diff --git a/internal/provider/datasource_directory_entitlements_test.go b/internal/provider/datasource_directory_entitlements_test.go index 37f9e8fc..d0be2643 100644 --- a/internal/provider/datasource_directory_entitlements_test.go +++ b/internal/provider/datasource_directory_entitlements_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryEntitlements(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_entitlements") + rec, user := setupVCR(t, "fixtures/datasource_directory_entitlements") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryEntitlements("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderFor(user) + hclDatasourceDirectoryEntitlements("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_entitlements.uut", "id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_entitlements.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), @@ -38,7 +38,7 @@ func TestDataSourceDirectoryEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryEntitlements("uut", "this-is-not-a-uuid"), + Config: hclDatasourceDirectoryEntitlements("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -50,7 +50,7 @@ func TestDataSourceDirectoryEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_entitlements" "uut" {}`, + Config: `data "btp_directory_entitlements" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found`), }, }, @@ -71,7 +71,7 @@ func TestDataSourceDirectoryEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryEntitlements("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryEntitlements("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_labels_test.go b/internal/provider/datasource_directory_labels_test.go index 999751b3..dc5a7be2 100644 --- a/internal/provider/datasource_directory_labels_test.go +++ b/internal/provider/datasource_directory_labels_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryLabels(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_labels") + rec, user := setupVCR(t, "fixtures/datasource_directory_labels") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryLabels("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderFor(user) + hclDatasourceDirectoryLabels("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_labels.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_labels.uut", "values.%", "2"), @@ -37,7 +37,7 @@ func TestDataSourceDirectoryLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryLabels("uut", "this-is-not-a-uuid"), + Config: hclDatasourceDirectoryLabels("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceDirectoryLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_labels" "uut" {}`, + Config: `data "btp_directory_labels" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceDirectoryLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryLabels("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryLabels("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_role_collection_test.go b/internal/provider/datasource_directory_role_collection_test.go index 3eb27558..86dd083e 100644 --- a/internal/provider/datasource_directory_role_collection_test.go +++ b/internal/provider/datasource_directory_role_collection_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryRoleCollection(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_role_collection") + rec, user := setupVCR(t, "fixtures/datasource_directory_role_collection") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollection("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRoleCollection("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_role_collection.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_role_collection.uut", "name", "Directory Viewer"), @@ -35,7 +35,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { }) }) t.Run("error path - directory not security enabled", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_role_collection.not_security_enabled") + rec, user := setupVCR(t, "fixtures/datasource_directory_role_collection.not_security_enabled") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -43,7 +43,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Directory Viewer"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Directory Viewer"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 400; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, @@ -55,7 +55,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_role_collections" "uut" {}`, + Config: `data "btp_directory_role_collections" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found`), }, }, @@ -67,7 +67,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollection("uut", "this-is-not-a-uuid", "Directory Viewer"), + Config: hclDatasourceDirectoryRoleCollection("uut", "this-is-not-a-uuid", "Directory Viewer"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -79,7 +79,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", ""), + Config: hclDatasourceDirectoryRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", ""), ExpectError: regexp.MustCompile(`Attribute name string length must be at least 1, got: 0`), }, }, @@ -100,7 +100,7 @@ func TestDataSourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Directory Viewer"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Directory Viewer"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_role_collections_test.go b/internal/provider/datasource_directory_role_collections_test.go index 8c1a277e..3fc043b8 100644 --- a/internal/provider/datasource_directory_role_collections_test.go +++ b/internal/provider/datasource_directory_role_collections_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryRoleCollections(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_role_collections") + rec, user := setupVCR(t, "fixtures/datasource_directory_role_collections") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollections("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRoleCollections("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_role_collections.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_role_collections.uut", "values.#", "2"), @@ -32,7 +32,7 @@ func TestDataSourceDirectoryRoleCollections(t *testing.T) { }) }) t.Run("error path - directory not security enabled", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_role_collections.not_security_enabled") + rec, user := setupVCR(t, "fixtures/datasource_directory_role_collections.not_security_enabled") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -40,7 +40,7 @@ func TestDataSourceDirectoryRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollections("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRoleCollections("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 400; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, @@ -52,7 +52,7 @@ func TestDataSourceDirectoryRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_role_collections" "uut" {}`, + Config: `data "btp_directory_role_collections" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found`), }, }, @@ -64,7 +64,7 @@ func TestDataSourceDirectoryRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoleCollections("uut", "this-is-not-a-uuid"), + Config: hclDatasourceDirectoryRoleCollections("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -85,7 +85,7 @@ func TestDataSourceDirectoryRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryRoleCollections("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryRoleCollections("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_role_test.go b/internal/provider/datasource_directory_role_test.go index 30dfbfb8..f0fb2c34 100644 --- a/internal/provider/datasource_directory_role_test.go +++ b/internal/provider/datasource_directory_role_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryRole(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_role") + rec, user := setupVCR(t, "fixtures/datasource_directory_role") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "Directory_Viewer", "cis-central!b13"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "Directory_Viewer", "cis-central!b13"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_role.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_role.uut", "name", "Directory Viewer"), @@ -37,7 +37,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { }) }) t.Run("error path - directory not security enabled", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_role.not_security_enabled") + rec, user := setupVCR(t, "fixtures/datasource_directory_role.not_security_enabled") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -45,7 +45,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRole("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Directory Viewer", "Directory_Viewer", "cis-central!b13"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRole("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Directory Viewer", "Directory_Viewer", "cis-central!b13"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 400; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, @@ -57,7 +57,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_role" "uut" {}`, + Config: `data "btp_directory_role" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "(directory_id|name|role_template_name|app_id)" is required, but no definition was found.`), }, }, @@ -69,7 +69,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRole("uut", "this-is-not-a-uuid", "a", "b", "c"), + Config: hclDatasourceDirectoryRole("uut", "this-is-not-a-uuid", "a", "b", "c"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -81,7 +81,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "", "b", "c"), + Config: hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "", "b", "c"), ExpectError: regexp.MustCompile(`Attribute name string length must be at least 1, got: 0`), }, }, @@ -93,7 +93,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "a", "", "c"), + Config: hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "a", "", "c"), ExpectError: regexp.MustCompile(`Attribute role_template_name string length must be at least 1, got: 0`), }, }, @@ -105,7 +105,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "a", "b", ""), + Config: hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "a", "b", ""), ExpectError: regexp.MustCompile(`Attribute app_id string length must be at least 1, got: 0`), }, }, @@ -126,7 +126,7 @@ func TestDataSourceDirectoryRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "Directory_Viewer", "cis-central!b13"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryRole("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "Directory_Viewer", "cis-central!b13"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_roles_test.go b/internal/provider/datasource_directory_roles_test.go index 1bd2868b..11d78ea7 100644 --- a/internal/provider/datasource_directory_roles_test.go +++ b/internal/provider/datasource_directory_roles_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryRoles(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_roles") + rec, user := setupVCR(t, "fixtures/datasource_directory_roles") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoles("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRoles("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_roles.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_roles.uut", "values.#", "8"), @@ -32,7 +32,7 @@ func TestDataSourceDirectoryRoles(t *testing.T) { }) }) t.Run("error path - directory not security enabled", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_roles.not_security_enabled") + rec, user := setupVCR(t, "fixtures/datasource_directory_roles.not_security_enabled") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -40,7 +40,7 @@ func TestDataSourceDirectoryRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoles("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderFor(user) + hclDatasourceDirectoryRoles("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 400; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, @@ -52,7 +52,7 @@ func TestDataSourceDirectoryRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_roles" "uut" {}`, + Config: `data "btp_directory_roles" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found`), }, }, @@ -64,7 +64,7 @@ func TestDataSourceDirectoryRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryRoles("uut", "this-is-not-a-uuid"), + Config: hclDatasourceDirectoryRoles("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -85,7 +85,7 @@ func TestDataSourceDirectoryRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryRoles("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryRoles("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_test.go b/internal/provider/datasource_directory_test.go index aeb8ea09..a564f2fa 100644 --- a/internal/provider/datasource_directory_test.go +++ b/internal/provider/datasource_directory_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectory(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory") + rec, user := setupVCR(t, "fixtures/datasource_directory") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,10 +22,10 @@ func TestDataSourceDirectory(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { // normal directory - Config: hclProvider() + hclDatasourceDirectory("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderFor(user) + hclDatasourceDirectory("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory.uut", "id", "5357bda0-8651-4eab-a69d-12d282bc3247"), - resource.TestCheckResourceAttr("data.btp_directory.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttrSet("data.btp_directory.uut", "created_by"), resource.TestCheckResourceAttr("data.btp_directory.uut", "created_date", "2023-05-16T08:39:33Z"), resource.TestCheckResourceAttr("data.btp_directory.uut", "description", "Please don't modify. This is used for integration tests."), resource.TestCheckResourceAttr("data.btp_directory.uut", "labels.#", "0"), @@ -37,10 +37,10 @@ func TestDataSourceDirectory(t *testing.T) { ), }, { // security enabled directory - Config: hclProvider() + hclDatasourceDirectory("uut_security_enabled", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderFor(user) + hclDatasourceDirectory("uut_security_enabled", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory.uut_security_enabled", "id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), - resource.TestCheckResourceAttr("data.btp_directory.uut_security_enabled", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttrSet("data.btp_directory.uut_security_enabled", "created_by"), resource.TestCheckResourceAttr("data.btp_directory.uut_security_enabled", "created_date", "2023-05-16T08:46:24Z"), resource.TestCheckResourceAttr("data.btp_directory.uut_security_enabled", "description", "Please don't modify. This is used for integration tests."), resource.TestCheckResourceAttr("data.btp_directory.uut_security_enabled", "labels.#", "0"), @@ -60,7 +60,7 @@ func TestDataSourceDirectory(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory" "uut" {}`, + Config: `data "btp_directory" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "id" is required, but no definition was found`), }, }, @@ -72,7 +72,7 @@ func TestDataSourceDirectory(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectory("uut", "this-is-not-a-uuid"), + Config: hclDatasourceDirectory("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -93,7 +93,7 @@ func TestDataSourceDirectory(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectory("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectory("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_user_test.go b/internal/provider/datasource_directory_user_test.go index e3d2bf1d..48277bfb 100644 --- a/internal/provider/datasource_directory_user_test.go +++ b/internal/provider/datasource_directory_user_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryUser(t *testing.T) { t.Parallel() t.Run("happy path - default idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_user.default_idp") + rec, user := setupVCR(t, "fixtures/datasource_directory_user.default_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclDatasourceDirectoryUserDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_user.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "user_name", "jenny.doe@test.com"), @@ -30,7 +30,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { resource.TestCheckResourceAttr("data.btp_directory_user.uut", "active", "true"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "family_name", ""), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "given_name", ""), - resource.TestCheckResourceAttr("data.btp_directory_user.uut", "id", "40c72ef9-b901-4b89-91fb-3d283231f7b4"), + resource.TestMatchResourceAttr("data.btp_directory_user.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "role_collections.#", "0"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "verified", "false"), ), @@ -39,7 +39,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { }) }) t.Run("happy path - custom idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_user.custom_idp") + rec, user := setupVCR(t, "fixtures/datasource_directory_user.custom_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -47,15 +47,15 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com", "terraformint-platform"), + Config: hclProviderFor(user) + hclDatasourceDirectoryUserCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_user.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "user_name", "jenny.doe@test.com"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "origin", "terraformint-platform"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "active", "true"), - resource.TestCheckResourceAttr("data.btp_directory_user.uut", "family_name", "unknown"), //FIXME should be empty, see NGPBUG-357810 - resource.TestCheckResourceAttr("data.btp_directory_user.uut", "given_name", "unknown"), //FIXME should be empty, see NGPBUG-357810 - resource.TestCheckResourceAttr("data.btp_directory_user.uut", "id", "2b5382f4-1922-4803-8dcb-5babe097b12b"), + resource.TestCheckResourceAttr("data.btp_directory_user.uut", "family_name", ""), + resource.TestCheckResourceAttr("data.btp_directory_user.uut", "given_name", ""), + resource.TestMatchResourceAttr("data.btp_directory_user.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "role_collections.#", "0"), resource.TestCheckResourceAttr("data.btp_directory_user.uut", "verified", "false"), ), @@ -69,7 +69,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserDefaultIdp("uut", "this-is-not-a-uuid", "jenny.doe@test.com"), + Config: hclDatasourceDirectoryUserDefaultIdp("uut", "this-is-not-a-uuid", "jenny.doe@test.com"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -81,7 +81,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_user" "uut" {}`, + Config: `data "btp_directory_user" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "(directory_id|user_name)" is required, but no definition was found.`), }, }, @@ -93,7 +93,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "", "terraformint"), + Config: hclDatasourceDirectoryUserCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "", "terraformint"), ExpectError: regexp.MustCompile(`Attribute user_name string length must be between 1 and 256, got: 0`), }, }, @@ -105,7 +105,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com", ""), + Config: hclDatasourceDirectoryUserCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -126,7 +126,7 @@ func TestDataSourceDirectoryUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryUserDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryUserDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "jenny.doe@test.com"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_directory_users_test.go b/internal/provider/datasource_directory_users_test.go index 556aa4e1..6c75a81c 100644 --- a/internal/provider/datasource_directory_users_test.go +++ b/internal/provider/datasource_directory_users_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceDirectoryUsers(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_users.default_idp") + rec, user := setupVCR(t, "fixtures/datasource_directory_users.default_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,17 +22,17 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUsersDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderFor(user) + hclDatasourceDirectoryUsersDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_users.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), - resource.TestCheckResourceAttr("data.btp_directory_users.uut", "values.#", "2"), + resource.TestCheckResourceAttr("data.btp_directory_users.uut", "values.#", "7"), ), }, }, }) }) t.Run("happy path with custom idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_users.custom_idp") + rec, user := setupVCR(t, "fixtures/datasource_directory_users.custom_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -40,17 +40,17 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUsersWithCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "terraformint-platform"), + Config: hclProviderFor(user) + hclDatasourceDirectoryUsersWithCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_directory_users.uut", "directory_id", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), - resource.TestCheckResourceAttr("data.btp_directory_users.uut", "values.#", "1"), + resource.TestCheckResourceAttr("data.btp_directory_users.uut", "values.#", "4"), ), }, }, }) }) t.Run("error path - non existing idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_directory_users.non_existing_idp") + rec, user := setupVCR(t, "fixtures/datasource_directory_users.non_existing_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -58,7 +58,7 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUsersWithCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "this-doesnt-exist"), + Config: hclProviderFor(user) + hclDatasourceDirectoryUsersWithCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "this-doesnt-exist"), ExpectError: regexp.MustCompile(`API Error Reading Resource Users \(Directory\)`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_users" "uut" {}`, + Config: `data "btp_directory_users" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found`), }, }, @@ -82,7 +82,7 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUsersDefaultIdp("uut", "this-is-not-a-uuid"), + Config: hclDatasourceDirectoryUsersDefaultIdp("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute directory_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -94,7 +94,7 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUsersWithCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", ""), + Config: hclDatasourceDirectoryUsersWithCustomIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -115,7 +115,7 @@ func TestDataSourceDirectoryUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceDirectoryUsersDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceDirectoryUsersDefaultIdp("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_entitlements_test.go b/internal/provider/datasource_globalaccount_entitlements_test.go index ba673420..10b1d7e5 100644 --- a/internal/provider/datasource_globalaccount_entitlements_test.go +++ b/internal/provider/datasource_globalaccount_entitlements_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountEntitlements(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_entitlements") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_entitlements") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,9 +22,9 @@ func TestDataSourceGlobalaccountEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountEntitlements("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountEntitlements("uut"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_globalaccount_entitlements.uut", "values.%", "128"), + resource.TestCheckResourceAttr("data.btp_globalaccount_entitlements.uut", "values.%", "158"), ), }, }, @@ -45,7 +45,7 @@ func TestDataSourceGlobalaccountEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountEntitlements("uut"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountEntitlements("uut"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_resource_provider_test.go b/internal/provider/datasource_globalaccount_resource_provider_test.go index 29c83214..7ae9a9de 100644 --- a/internal/provider/datasource_globalaccount_resource_provider_test.go +++ b/internal/provider/datasource_globalaccount_resource_provider_test.go @@ -10,7 +10,7 @@ import ( func TestDataSourceGlobalaccountResourceProvider(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_resource_provider") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_resource_provider") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -18,7 +18,7 @@ func TestDataSourceGlobalaccountResourceProvider(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountResourceProvider("uut", + Config: hclProviderFor(user) + hclDatasourceGlobalaccountResourceProvider("uut", "AWS", "tf_test_resource_provider"), Check: resource.ComposeAggregateTestCheckFunc( diff --git a/internal/provider/datasource_globalaccount_resource_providers_test.go b/internal/provider/datasource_globalaccount_resource_providers_test.go index 492f3e4b..fa729542 100644 --- a/internal/provider/datasource_globalaccount_resource_providers_test.go +++ b/internal/provider/datasource_globalaccount_resource_providers_test.go @@ -10,7 +10,7 @@ import ( func TestDataSourceGlobalaccountResourceProviders(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_resource_providers") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_resource_providers") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -18,7 +18,7 @@ func TestDataSourceGlobalaccountResourceProviders(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountResourceProviders("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountResourceProviders("uut"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_resource_providers.uut", "values.#", "1"), resource.TestCheckResourceAttr("data.btp_globalaccount_resource_providers.uut", "values.0.provider_type", "AWS"), diff --git a/internal/provider/datasource_globalaccount_role_collection_test.go b/internal/provider/datasource_globalaccount_role_collection_test.go index a4a87de3..88379b41 100644 --- a/internal/provider/datasource_globalaccount_role_collection_test.go +++ b/internal/provider/datasource_globalaccount_role_collection_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountRoleCollection(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_role_collection.role_collection_exists") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_role_collection.role_collection_exists") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,9 +22,9 @@ func TestDataSourceGlobalaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRoleCollection("uut", "Global Account Administrator"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountRoleCollection("uut", "Global Account Administrator"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_globalaccount_role_collection.uut", "description", "Administrative access to the global account"), + resource.TestCheckResourceAttr("data.btp_globalaccount_role_collection.uut", "description", ""), resource.TestCheckResourceAttr("data.btp_globalaccount_role_collection.uut", "read_only", "true"), resource.TestCheckResourceAttr("data.btp_globalaccount_role_collection.uut", "roles.#", "4"), ), @@ -34,7 +34,7 @@ func TestDataSourceGlobalaccountRoleCollection(t *testing.T) { }) t.Run("error path - role collection not available", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_role_collection.role_collection_not_available") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_role_collection.role_collection_not_available") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -42,7 +42,7 @@ func TestDataSourceGlobalaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRoleCollection("uut", "fuh"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountRoleCollection("uut", "fuh"), ExpectError: regexp.MustCompile(`API Error Reading Resource Role Collection \(Global Account\)`), }, }, @@ -55,7 +55,7 @@ func TestDataSourceGlobalaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRoleCollection("uut", ""), + Config: hclDatasourceGlobalaccountRoleCollection("uut", ""), ExpectError: regexp.MustCompile(`Attribute name string length must be at least 1, got: 0`), }, }, @@ -76,7 +76,7 @@ func TestDataSourceGlobalaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountRoleCollection("uut", "Global Account Administrator"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountRoleCollection("uut", "Global Account Administrator"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_role_collections_test.go b/internal/provider/datasource_globalaccount_role_collections_test.go index f48f8396..484c4546 100644 --- a/internal/provider/datasource_globalaccount_role_collections_test.go +++ b/internal/provider/datasource_globalaccount_role_collections_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountRoleCollections(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_role_collections") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_role_collections") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalaccountRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRoleCollections("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountRoleCollections("uut"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_role_collections.uut", "values.#", "2"), ), @@ -45,7 +45,7 @@ func TestDataSourceGlobalaccountRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountRoleCollections("uut"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountRoleCollections("uut"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_role_test.go b/internal/provider/datasource_globalaccount_role_test.go index ea1ad511..35f1dca0 100644 --- a/internal/provider/datasource_globalaccount_role_test.go +++ b/internal/provider/datasource_globalaccount_role_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountRole(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_role") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_role") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRole("uut", "Global Account Viewer", "GlobalAccount_Viewer", "cis-central!b13"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountRole("uut", "Global Account Viewer", "GlobalAccount_Viewer", "cis-central!b13"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_role.uut", "name", "Global Account Viewer"), resource.TestCheckResourceAttr("data.btp_globalaccount_role.uut", "role_template_name", "GlobalAccount_Viewer"), @@ -41,7 +41,7 @@ func TestDataSourceGlobalaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_globalaccount_role" "uut" {}`, + Config: `data "btp_globalaccount_role" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "(name|role_template_name|app_id)" is required, but no definition was found.`), }, }, @@ -53,7 +53,7 @@ func TestDataSourceGlobalaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRole("uut", "", "b", "c"), + Config: hclDatasourceGlobalaccountRole("uut", "", "b", "c"), ExpectError: regexp.MustCompile(`Attribute name string length must be at least 1, got: 0`), }, }, @@ -65,7 +65,7 @@ func TestDataSourceGlobalaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRole("uut", "a", "", "c"), + Config: hclDatasourceGlobalaccountRole("uut", "a", "", "c"), ExpectError: regexp.MustCompile(`Attribute role_template_name string length must be at least 1, got: 0`), }, }, @@ -77,7 +77,7 @@ func TestDataSourceGlobalaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRole("uut", "a", "b", ""), + Config: hclDatasourceGlobalaccountRole("uut", "a", "b", ""), ExpectError: regexp.MustCompile(`Attribute app_id string length must be at least 1, got: 0`), }, }, @@ -98,7 +98,7 @@ func TestDataSourceGlobalaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountRole("uut", "Global Account Viewer", "GlobalAccount_Viewer", "cis-local!b13"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountRole("uut", "Global Account Viewer", "GlobalAccount_Viewer", "cis-local!b13"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_roles_test.go b/internal/provider/datasource_globalaccount_roles_test.go index 4efabd20..f773afc6 100644 --- a/internal/provider/datasource_globalaccount_roles_test.go +++ b/internal/provider/datasource_globalaccount_roles_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountRoles(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_roles") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_roles") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalaccountRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountRoles("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountRoles("uut"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_roles.uut", "id", "terraformintcanary"), resource.TestCheckResourceAttr("data.btp_globalaccount_roles.uut", "values.#", "11"), @@ -46,7 +46,7 @@ func TestDataSourceGlobalaccountRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountRoles("uut"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountRoles("uut"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_test.go b/internal/provider/datasource_globalaccount_test.go index 42bf5522..cb05407b 100644 --- a/internal/provider/datasource_globalaccount_test.go +++ b/internal/provider/datasource_globalaccount_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalAccount(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalAccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalAccount("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalAccount("uut"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount.uut", "id", "03760ecf-9d89-4189-a92a-1c7efed09298"), resource.TestCheckResourceAttr("data.btp_globalaccount.uut", "name", "terraform-integration-canary"), @@ -53,7 +53,7 @@ func TestDataSourceGlobalAccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalAccount("uut"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalAccount("uut"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_trust_configuration_test.go b/internal/provider/datasource_globalaccount_trust_configuration_test.go index 85551255..da67f6d4 100644 --- a/internal/provider/datasource_globalaccount_trust_configuration_test.go +++ b/internal/provider/datasource_globalaccount_trust_configuration_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { t.Parallel() t.Run("happy path - default idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_trust_configuration.default") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_trust_configuration.default") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountTrustConfiguration("uut", "sap.default"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountTrustConfiguration("uut", "sap.default"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_trust_configuration.uut", "id", "sap.default"), resource.TestCheckResourceAttr("data.btp_globalaccount_trust_configuration.uut", "description", ""), @@ -38,7 +38,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { }) }) t.Run("happy path - custom idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_trust_configuration.custom_idp_exists") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_trust_configuration.custom_idp_exists") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -46,7 +46,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountTrustConfiguration("uut", "terraformint-platform"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountTrustConfiguration("uut", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_trust_configuration.uut", "id", "terraformint-platform"), resource.TestCheckResourceAttr("data.btp_globalaccount_trust_configuration.uut", "description", "Custom Platform Identity Provider"), @@ -62,7 +62,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { }) }) t.Run("error path - custom idp - not existing", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_trust_configuration.custom_idp_not_existing") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_trust_configuration.custom_idp_not_existing") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -70,7 +70,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountTrustConfiguration("uut", "fuh"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountTrustConfiguration("uut", "fuh"), ExpectError: regexp.MustCompile(`API Error Reading Resource Trust Configuration \(Global Account\)`), }, }, @@ -82,7 +82,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountTrustConfiguration("uut", ""), + Config: hclDatasourceGlobalaccountTrustConfiguration("uut", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -103,7 +103,7 @@ func TestDataSourceGlobalaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountTrustConfiguration("uut", "sap.default"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountTrustConfiguration("uut", "sap.default"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_trust_configurations_test.go b/internal/provider/datasource_globalaccount_trust_configurations_test.go index fd92c724..68a2fc04 100644 --- a/internal/provider/datasource_globalaccount_trust_configurations_test.go +++ b/internal/provider/datasource_globalaccount_trust_configurations_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountTrustConfigurations(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_trust_configurations") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_trust_configurations") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountTrustConfigurations("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountTrustConfigurations("uut"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_trust_configurations.uut", "values.#", "2"), ), @@ -45,7 +45,7 @@ func TestDataSourceGlobalaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountTrustConfigurations("uut"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountTrustConfigurations("uut"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_user_test.go b/internal/provider/datasource_globalaccount_user_test.go index 159dede0..3642b653 100644 --- a/internal/provider/datasource_globalaccount_user_test.go +++ b/internal/provider/datasource_globalaccount_user_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountUser(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_user") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_user") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceGlobalaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountUserWithCustomIdp("uut", "jenny.doe@test.com", "sap.default"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountUserWithCustomIdp("uut", "jenny.doe@test.com", "sap.default"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "user_name", "jenny.doe@test.com"), resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "origin", "sap.default"), @@ -30,7 +30,7 @@ func TestDataSourceGlobalaccountUser(t *testing.T) { resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "family_name", "unknown"), resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "given_name", "unknown"), resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "id", "86535387-54aa-4282-af13-67dd50cdd13c"), - resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "role_collections.#", "2"), + resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "role_collections.#", "0"), resource.TestCheckResourceAttr("data.btp_globalaccount_user.uut", "verified", "false"), ), }, @@ -43,7 +43,7 @@ func TestDataSourceGlobalaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountUser("uut", ""), + Config: hclDatasourceGlobalaccountUser("uut", ""), ExpectError: regexp.MustCompile(`Attribute user_name string length must be between 1 and 256, got: 0`), }, }, @@ -55,7 +55,7 @@ func TestDataSourceGlobalaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountUserWithCustomIdp("uut", "jenny.doe@test.com", ""), + Config: hclDatasourceGlobalaccountUserWithCustomIdp("uut", "jenny.doe@test.com", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -76,7 +76,7 @@ func TestDataSourceGlobalaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountUser("uut", "jenny.doe@test.com"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountUser("uut", "jenny.doe@test.com"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_globalaccount_users_test.go b/internal/provider/datasource_globalaccount_users_test.go index 010521e8..afa11bb5 100644 --- a/internal/provider/datasource_globalaccount_users_test.go +++ b/internal/provider/datasource_globalaccount_users_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceGlobalaccountUsers(t *testing.T) { t.Parallel() t.Run("happy path - default idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_users.default_idp") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_users.default_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,16 +22,16 @@ func TestDataSourceGlobalaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountUsers("uut"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountUsers("uut"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_globalaccount_users.uut", "values.#", "3"), + resource.TestCheckResourceAttr("data.btp_globalaccount_users.uut", "values.#", "14"), ), }, }, }) }) t.Run("happy path - with custom idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_globalaccount_users.custom_idp") + rec, user := setupVCR(t, "fixtures/datasource_globalaccount_users.custom_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -39,9 +39,9 @@ func TestDataSourceGlobalaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountUsersWithCustomIdp("uut", "terraformint-platform"), + Config: hclProviderFor(user) + hclDatasourceGlobalaccountUsersWithCustomIdp("uut", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_globalaccount_users.uut", "values.#", "2"), + resource.TestCheckResourceAttr("data.btp_globalaccount_users.uut", "values.#", "3"), ), }, }, @@ -54,7 +54,7 @@ func TestDataSourceGlobalaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceGlobalaccountUsersWithCustomIdp("uut", ""), + Config: hclDatasourceGlobalaccountUsersWithCustomIdp("uut", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -75,7 +75,7 @@ func TestDataSourceGlobalaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceGlobalaccountUsersWithCustomIdp("uut", "terraformint-platform"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceGlobalaccountUsersWithCustomIdp("uut", "terraformint-platform"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_regions_test.go b/internal/provider/datasource_regions_test.go index c3a29d89..66756247 100644 --- a/internal/provider/datasource_regions_test.go +++ b/internal/provider/datasource_regions_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceRegions(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_regions") + rec, user := setupVCR(t, "fixtures/datasource_regions") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceRegions(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceRegions("uut"), + Config: hclProviderFor(user) + hclDatasourceRegions("uut"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_regions.uut", "values.#", "5"), ), @@ -45,7 +45,7 @@ func TestDataSourceRegions(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceRegions("uut"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceRegions("uut"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_app_test.go b/internal/provider/datasource_subaccount_app_test.go index 22240f2d..9cc47d31 100644 --- a/internal/provider/datasource_subaccount_app_test.go +++ b/internal/provider/datasource_subaccount_app_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountApp(t *testing.T) { t.Parallel() t.Run("happy path - app by id", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_apps_by_id") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_apps_by_id") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestDataSourceSubaccountApp(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountAppById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "cas-ui-xsuaa-prod!t216"), + Config: hclProviderFor(user) + hclDatasourceSubaccountAppById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "cas-ui-xsuaa-prod!t216"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_app.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_app.uut", "id", "cas-ui-xsuaa-prod!t216"), @@ -41,7 +41,7 @@ func TestDataSourceSubaccountApp(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountAppNoId("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclDatasourceSubaccountAppNoId("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), ExpectError: regexp.MustCompile(`The argument "id" is required, but no definition was found`), }, }, @@ -53,7 +53,7 @@ func TestDataSourceSubaccountApp(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountAppNoSubaccountId("uut", "cas-ui-xsuaa-prod!t216"), + Config: hclDatasourceSubaccountAppNoSubaccountId("uut", "cas-ui-xsuaa-prod!t216"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -66,7 +66,7 @@ func TestDataSourceSubaccountApp(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountAppById("uut", "this-is-not-a-uuid", "cas-ui-xsuaa-prod!t216"), + Config: hclDatasourceSubaccountAppById("uut", "this-is-not-a-uuid", "cas-ui-xsuaa-prod!t216"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, diff --git a/internal/provider/datasource_subaccount_apps_test.go b/internal/provider/datasource_subaccount_apps_test.go index baa3560f..d5cc8808 100644 --- a/internal/provider/datasource_subaccount_apps_test.go +++ b/internal/provider/datasource_subaccount_apps_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountApps(t *testing.T) { t.Parallel() t.Run("happy path - all apps of subaccount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_apps") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_apps") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestDataSourceSubaccountApps(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountApps("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountApps("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_apps.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_apps.uut", "values.#", "15"), @@ -36,7 +36,7 @@ func TestDataSourceSubaccountApps(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_apps" "uut" {}`, + Config: `data "btp_subaccount_apps" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -48,7 +48,7 @@ func TestDataSourceSubaccountApps(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountApps("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountApps("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, diff --git a/internal/provider/datasource_subaccount_entitlements_test.go b/internal/provider/datasource_subaccount_entitlements_test.go index 0be524ac..10a63062 100644 --- a/internal/provider/datasource_subaccount_entitlements_test.go +++ b/internal/provider/datasource_subaccount_entitlements_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountEntitlements(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_entitlements") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_entitlements") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,10 +22,10 @@ func TestDataSourceSubaccountEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountEntitlements("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountEntitlements("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_entitlements.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), - resource.TestCheckResourceAttr("data.btp_subaccount_entitlements.uut", "values.%", "128"), + resource.TestCheckResourceAttr("data.btp_subaccount_entitlements.uut", "values.%", "159"), ), }, }, @@ -37,7 +37,7 @@ func TestDataSourceSubaccountEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountEntitlements("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountEntitlements("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceSubaccountEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_entitlements" "uut" {}`, + Config: `data "btp_subaccount_entitlements" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceSubaccountEntitlements(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountEntitlements("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountEntitlements("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_environment_instances_test.go b/internal/provider/datasource_subaccount_environment_instances_test.go index 8397c545..d08968da 100644 --- a/internal/provider/datasource_subaccount_environment_instances_test.go +++ b/internal/provider/datasource_subaccount_environment_instances_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountEnvironmentInstances(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_environment_instances") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_environment_instances") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountEnvironmentInstances(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountEnvironmentInstances("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountEnvironmentInstances("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_environment_instances.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_environment_instances.uut", "values.#", "0"), @@ -37,7 +37,7 @@ func TestDataSourceSubaccountEnvironmentInstances(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_environment_instances" "uut" {}`, + Config: `data "btp_subaccount_environment_instances" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceSubaccountEnvironmentInstances(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountEnvironmentInstances("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountEnvironmentInstances("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceSubaccountEnvironmentInstances(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountEnvironmentInstances("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountEnvironmentInstances("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_environments_test.go b/internal/provider/datasource_subaccount_environments_test.go index cbc13d7b..a93a7d70 100644 --- a/internal/provider/datasource_subaccount_environments_test.go +++ b/internal/provider/datasource_subaccount_environments_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountEnvironments(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_environments") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_environments") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountEnvironments(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountEnvironments("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountEnvironments("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_environments.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_environments.uut", "values.#", "2"), @@ -37,7 +37,7 @@ func TestDataSourceSubaccountEnvironments(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_environments" "uut" {}`, + Config: `data "btp_subaccount_environments" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceSubaccountEnvironments(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountEnvironments("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountEnvironments("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceSubaccountEnvironments(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountEnvironments("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountEnvironments("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_labels_test.go b/internal/provider/datasource_subaccount_labels_test.go index 870cfcfe..08c200e5 100644 --- a/internal/provider/datasource_subaccount_labels_test.go +++ b/internal/provider/datasource_subaccount_labels_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountLabels(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_labels") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_labels") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountLabels("all", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountLabels("all", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_labels.all", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_labels.all", "values.%", "2"), @@ -37,7 +37,7 @@ func TestDataSourceSubaccountLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_labels" "uut" {}`, + Config: `data "btp_subaccount_labels" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceSubaccountLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountLabels("all", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountLabels("all", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceSubaccountLabels(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountLabels("all", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountLabels("all", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_role_collection_test.go b/internal/provider/datasource_subaccount_role_collection_test.go index 52f11aea..1b2c0f6e 100644 --- a/internal/provider/datasource_subaccount_role_collection_test.go +++ b/internal/provider/datasource_subaccount_role_collection_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountRoleCollection(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_role_collection") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_role_collection") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoleCollection("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Subaccount Viewer"), + Config: hclProviderFor(user) + hclDatasourceSubaccountRoleCollection("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Subaccount Viewer"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_role_collection.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_role_collection.uut", "name", "Subaccount Viewer"), @@ -40,7 +40,7 @@ func TestDataSourceSubaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_role_collections" "uut" {}`, + Config: `data "btp_subaccount_role_collections" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -52,7 +52,7 @@ func TestDataSourceSubaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoleCollection("uut", "this-is-not-a-uuid", "Subaccount Viewer"), + Config: hclDatasourceSubaccountRoleCollection("uut", "this-is-not-a-uuid", "Subaccount Viewer"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -64,7 +64,7 @@ func TestDataSourceSubaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoleCollection("uut", "this-is-not-a-uuid", ""), + Config: hclDatasourceSubaccountRoleCollection("uut", "this-is-not-a-uuid", ""), ExpectError: regexp.MustCompile(`Attribute name string length must be at least 1, got: 0`), }, }, @@ -85,7 +85,7 @@ func TestDataSourceSubaccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Subaccount Viewer"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountRoleCollection("uut", "5357bda0-8651-4eab-a69d-12d282bc3247", "Subaccount Viewer"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_role_collections_test.go b/internal/provider/datasource_subaccount_role_collections_test.go index c878faf3..dd8c2b48 100644 --- a/internal/provider/datasource_subaccount_role_collections_test.go +++ b/internal/provider/datasource_subaccount_role_collections_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountRoleCollections(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_role_collections") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_role_collections") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoleCollections("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountRoleCollections("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_role_collections.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_role_collections.uut", "values.#", "6"), @@ -37,7 +37,7 @@ func TestDataSourceSubaccountRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_role_collections" "uut" {}`, + Config: `data "btp_subaccount_role_collections" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceSubaccountRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoleCollections("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountRoleCollections("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceSubaccountRoleCollections(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountRoleCollections("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountRoleCollections("uut", "5357bda0-8651-4eab-a69d-12d282bc3247"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_role_test.go b/internal/provider/datasource_subaccount_role_test.go index 7e85614d..01a0eba4 100644 --- a/internal/provider/datasource_subaccount_role_test.go +++ b/internal/provider/datasource_subaccount_role_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountRole(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_role") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_role") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Subaccount Viewer", "Subaccount_Viewer", "cis-local!b2"), + Config: hclProviderFor(user) + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Subaccount Viewer", "Subaccount_Viewer", "cis-local!b2"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_role.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_role.uut", "name", "Subaccount Viewer"), @@ -42,7 +42,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_role" "uut" {}`, + Config: `data "btp_subaccount_role" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "(subaccount_id|name|role_template_name|app_id)" is required, but no definition was found.`), }, }, @@ -54,7 +54,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRole("uut", "this-is-not-a-uuid", "a", "b", "c"), + Config: hclDatasourceSubaccountRole("uut", "this-is-not-a-uuid", "a", "b", "c"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -66,7 +66,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "", "b", "c"), + Config: hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "", "b", "c"), ExpectError: regexp.MustCompile(`Attribute name string length must be at least 1, got: 0`), }, }, @@ -78,7 +78,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "a", "", "c"), + Config: hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "a", "", "c"), ExpectError: regexp.MustCompile(`Attribute role_template_name string length must be at least 1, got: 0`), }, }, @@ -90,7 +90,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "a", "b", ""), + Config: hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "a", "b", ""), ExpectError: regexp.MustCompile(`Attribute app_id string length must be at least 1, got: 0`), }, }, @@ -111,7 +111,7 @@ func TestDataSourceSubaccountRole(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Subaccount Viewer", "Subaccount_Viewer", "cis-local!b2"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountRole("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Subaccount Viewer", "Subaccount_Viewer", "cis-local!b2"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_roles_test.go b/internal/provider/datasource_subaccount_roles_test.go index a6ca9fdf..8829fd58 100644 --- a/internal/provider/datasource_subaccount_roles_test.go +++ b/internal/provider/datasource_subaccount_roles_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountRoles(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_roles") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_roles") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoles("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountRoles("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_roles.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_roles.uut", "values.#", "24"), @@ -37,7 +37,7 @@ func TestDataSourceSubaccountRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_roles" "uut" {}`, + Config: `data "btp_subaccount_roles" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -49,7 +49,7 @@ func TestDataSourceSubaccountRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountRoles("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountRoles("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -70,7 +70,7 @@ func TestDataSourceSubaccountRoles(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountRoles("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountRoles("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_service_binding_test.go b/internal/provider/datasource_subaccount_service_binding_test.go index 6867639c..f3726c6f 100644 --- a/internal/provider/datasource_subaccount_service_binding_test.go +++ b/internal/provider/datasource_subaccount_service_binding_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { t.Parallel() t.Run("happy path - service bindings by id", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_binding_by_id") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_binding_by_id") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindingbyId("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "b02e4b22-906b-40c5-9c5e-dbb6a9068444"), + Config: hclProviderFor(user) + hclDatasourceSubaccountServiceBindingbyId("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "b02e4b22-906b-40c5-9c5e-dbb6a9068444"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_binding.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_binding.uut", "id", "b02e4b22-906b-40c5-9c5e-dbb6a9068444"), @@ -36,7 +36,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { }) t.Run("happy path - service bindings by name", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_binding_by_name") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_binding_by_name") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -44,7 +44,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindingbyName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "test-service-binding-iban"), + Config: hclProviderFor(user) + hclDatasourceSubaccountServiceBindingbyName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "test-service-binding-iban"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_binding.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_binding.uut", "id", "b02e4b22-906b-40c5-9c5e-dbb6a9068444"), @@ -64,7 +64,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindingNoSubaccount("uut", "test-service-binding-iban"), + Config: hclDatasourceSubaccountServiceBindingNoSubaccount("uut", "test-service-binding-iban"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -77,7 +77,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindingNoIdOrName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclDatasourceSubaccountServiceBindingNoIdOrName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), ExpectError: regexp.MustCompile(`Error: Invalid Attribute Combination`), }, }, @@ -89,7 +89,7 @@ func TestDataSourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindingbyName("uut", "this-is-not-a-uuid", "test-service-binding-iban"), + Config: hclDatasourceSubaccountServiceBindingbyName("uut", "this-is-not-a-uuid", "test-service-binding-iban"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, diff --git a/internal/provider/datasource_subaccount_service_bindings_test.go b/internal/provider/datasource_subaccount_service_bindings_test.go index 57c3da2b..fcd0c26c 100644 --- a/internal/provider/datasource_subaccount_service_bindings_test.go +++ b/internal/provider/datasource_subaccount_service_bindings_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountServiceBindings(t *testing.T) { t.Parallel() t.Run("happy path - all service bindings of a subaccount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_bindings") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_bindings") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestDataSourceSubaccountServiceBindings(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindings("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountServiceBindings("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_bindings.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_bindings.uut", "values.#", "3"), @@ -36,7 +36,7 @@ func TestDataSourceSubaccountServiceBindings(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_service_bindings" "uut" {}`, + Config: `data "btp_subaccount_service_bindings" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -48,7 +48,7 @@ func TestDataSourceSubaccountServiceBindings(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceBindings("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountServiceBindings("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, diff --git a/internal/provider/datasource_subaccount_service_instance_test.go b/internal/provider/datasource_subaccount_service_instance_test.go index c044282c..c64246dc 100644 --- a/internal/provider/datasource_subaccount_service_instance_test.go +++ b/internal/provider/datasource_subaccount_service_instance_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { t.Parallel() t.Run("happy path - service instance by id", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_instance_by_id") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_instance_by_id") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceInstanceById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a"), + Config: hclProviderFor(user) + hclDatasourceSubaccountServiceInstanceById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "id", "df532d07-57a7-415e-a261-23a398ef068a"), @@ -37,7 +37,7 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { }) }) t.Run("happy path - service instance by name", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_instance_by_name") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_instance_by_name") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -45,7 +45,7 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceInstanceByName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-testacc-alertnotification-instance"), + Config: hclProviderFor(user) + hclDatasourceSubaccountServiceInstanceByName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-testacc-alertnotification-instance"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "id", "df532d07-57a7-415e-a261-23a398ef068a"), @@ -68,7 +68,7 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceInstanceIdName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-testacc-alertnotification-instance"), + Config: hclDatasourceSubaccountServiceInstanceIdName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-testacc-alertnotification-instance"), ExpectError: regexp.MustCompile(`Error: Invalid Attribute Combination`), }, }, @@ -81,7 +81,7 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceInstanceWoSubaccount("uut", "lite"), + Config: hclDatasourceSubaccountServiceInstanceWoSubaccount("uut", "lite"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), }, }, @@ -91,18 +91,18 @@ func TestDataSourceSubaccountServiceInstance(t *testing.T) { func hclDatasourceSubaccountServiceInstanceById(resourceName string, subaccountId string, serviceId string) string { template := ` -data "btp_subaccount_service_instance" "%s" { +data "btp_subaccount_service_instance" "%s" { subaccount_id = "%s" - id = "%s" + id = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, serviceId) } func hclDatasourceSubaccountServiceInstanceByName(resourceName string, subaccountId string, serviceName string) string { template := ` -data "btp_subaccount_service_instance" "%s" { +data "btp_subaccount_service_instance" "%s" { subaccount_id = "%s" - name = "%s" + name = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, serviceName) } @@ -111,7 +111,7 @@ func hclDatasourceSubaccountServiceInstanceIdName(resourceName string, subaccoun template := ` data "btp_subaccount_service_instance" "%s" { subaccount_id = "%s" - id = "%s" + id = "%s" name = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, serviceId, serviceName) diff --git a/internal/provider/datasource_subaccount_service_instances_test.go b/internal/provider/datasource_subaccount_service_instances_test.go index 5b8c0932..0ffc3e8c 100644 --- a/internal/provider/datasource_subaccount_service_instances_test.go +++ b/internal/provider/datasource_subaccount_service_instances_test.go @@ -11,7 +11,7 @@ import ( func TestDataSourceSubaccountServiceInstancess(t *testing.T) { t.Parallel() t.Run("happy path - service instances for subaccount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_instances_all") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_instances_all") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceInstanceBySubaccount("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountServiceInstanceBySubaccount("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "values.#", "2"), @@ -30,7 +30,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { }) t.Run("happy path - service instances for subaccount with fields filter", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_instances_namefilter") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_instances_namefilter") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -38,7 +38,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountInstancesBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "false"), + Config: hclProviderFor(user) + hclDatasourceSubaccountInstancesBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "false"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "values.#", "0"), @@ -49,7 +49,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { }) t.Run("happy path - service instances for subaccount with fields filter (variant)", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_instances_namefilter_variant") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_instances_namefilter_variant") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -57,7 +57,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountInstancesBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "true"), + Config: hclProviderFor(user) + hclDatasourceSubaccountInstancesBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "true"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "values.#", "2"), @@ -68,7 +68,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { }) t.Run("happy path - service instances for subaccount with labels filter", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_instances_labelsfilter") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_instances_labelsfilter") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -76,7 +76,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountInstancesBySubaccountAndLabels("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountInstancesBySubaccountAndLabels("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_instances.uut", "values.#", "1"), @@ -91,7 +91,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_service_instances" "uut" {}`, + Config: `data "btp_subaccount_service_instances" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -104,7 +104,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceInstanceBySubaccount("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountServiceInstanceBySubaccount("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -115,7 +115,7 @@ func TestDataSourceSubaccountServiceInstancess(t *testing.T) { func hclDatasourceSubaccountServiceInstanceBySubaccount(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_instances" "%s" { +data "btp_subaccount_service_instances" "%s" { subaccount_id = "%s" }` @@ -124,7 +124,7 @@ data "btp_subaccount_service_instances" "%s" { func hclDatasourceSubaccountInstancesBySubaccountAndFields(resourceName string, subaccountId string, usable string) string { template := ` -data "btp_subaccount_service_instances" "%s" { +data "btp_subaccount_service_instances" "%s" { subaccount_id = "%s" fields_filter = "usable eq '%s'" }` @@ -134,7 +134,7 @@ data "btp_subaccount_service_instances" "%s" { func hclDatasourceSubaccountInstancesBySubaccountAndLabels(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_instances" "%s" { +data "btp_subaccount_service_instances" "%s" { subaccount_id = "%s" labels_filter = "org eq 'testvalue'" }` diff --git a/internal/provider/datasource_subaccount_service_offering_test.go b/internal/provider/datasource_subaccount_service_offering_test.go index 138dea0f..638080b3 100644 --- a/internal/provider/datasource_subaccount_service_offering_test.go +++ b/internal/provider/datasource_subaccount_service_offering_test.go @@ -11,7 +11,7 @@ import ( func TestDataSourceSubaccountServiceoffering(t *testing.T) { t.Parallel() t.Run("happy path - service offering by id", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_offering_by_id") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_offering_by_id") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestDataSourceSubaccountServiceoffering(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "d67ff82d-9bfe-43e3-abd2-f2e21a5362c5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountOfferingById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "d67ff82d-9bfe-43e3-abd2-f2e21a5362c5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "id", "d67ff82d-9bfe-43e3-abd2-f2e21a5362c5"), @@ -38,7 +38,7 @@ func TestDataSourceSubaccountServiceoffering(t *testing.T) { }) }) t.Run("happy path service offering by name", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_offering_by_name") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_offering_by_name") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -46,7 +46,7 @@ func TestDataSourceSubaccountServiceoffering(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingByName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "xsuaa"), + Config: hclProviderFor(user) + hclDatasourceSubaccountOfferingByName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "xsuaa"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "id", "d67ff82d-9bfe-43e3-abd2-f2e21a5362c5"), @@ -71,7 +71,7 @@ func TestDataSourceSubaccountServiceoffering(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountServiceOfferingIdName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "standard"), + Config: hclDatasourceSubaccountServiceOfferingIdName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "standard"), ExpectError: regexp.MustCompile(`Error: Invalid Attribute Combination`), }, }, @@ -84,7 +84,7 @@ func TestDataSourceSubaccountServiceoffering(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingWoSubaccount("uut", "lite"), + Config: hclDatasourceSubaccountOfferingWoSubaccount("uut", "lite"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), }, }, @@ -95,9 +95,9 @@ func TestDataSourceSubaccountServiceoffering(t *testing.T) { func hclDatasourceSubaccountOfferingById(resourceName string, subaccountId string, offeringId string) string { template := ` -data "btp_subaccount_service_offering" "%s" { +data "btp_subaccount_service_offering" "%s" { subaccount_id = "%s" - id = "%s" + id = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, offeringId) @@ -106,7 +106,7 @@ data "btp_subaccount_service_offering" "%s" { func hclDatasourceSubaccountOfferingByName(resourceName string, subaccountId string, offeringName string) string { template := ` data "btp_subaccount_service_offering" "%s" { - subaccount_id = "%s" + subaccount_id = "%s" name = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, offeringName) @@ -116,7 +116,7 @@ func hclDatasourceSubaccountServiceOfferingIdName(resourceName string, subaccoun template := ` data "btp_subaccount_service_offering" "%s" { subaccount_id = "%s" - id = "%s" + id = "%s" name = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, offeringId, offeringName) diff --git a/internal/provider/datasource_subaccount_service_offerings_test.go b/internal/provider/datasource_subaccount_service_offerings_test.go index 1d8a03b5..498e4e00 100644 --- a/internal/provider/datasource_subaccount_service_offerings_test.go +++ b/internal/provider/datasource_subaccount_service_offerings_test.go @@ -11,7 +11,7 @@ import ( func TestDataSourceSubaccountServiceOfferings(t *testing.T) { t.Parallel() t.Run("happy path - service offerings for subaccount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_all") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_all") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,10 +19,10 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingsBySubaccount("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountOfferingsBySubaccount("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), - resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "values.#", "16"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "values.#", "17"), ), }, }, @@ -30,7 +30,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { }) t.Run("happy path - service offerings for subaccount and environment", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_by_environment") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_by_environment") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -38,7 +38,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingsBySubaccountAndEnvironment("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountOfferingsBySubaccountAndEnvironment("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "values.#", "0"), @@ -49,7 +49,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { }) t.Run("happy path - service plans for subaccount with fields filter", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_namefilter") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_namefilter") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -57,7 +57,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingsBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountOfferingsBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_offerings.uut", "values.#", "1"), @@ -73,7 +73,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_service_offerings" "uut" {}`, + Config: `data "btp_subaccount_service_offerings" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -85,7 +85,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountOfferingsBySubaccount("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountOfferingsBySubaccount("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -96,7 +96,7 @@ func TestDataSourceSubaccountServiceOfferings(t *testing.T) { func hclDatasourceSubaccountOfferingsBySubaccount(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_offerings" "%s" { +data "btp_subaccount_service_offerings" "%s" { subaccount_id = "%s" }` @@ -105,7 +105,7 @@ data "btp_subaccount_service_offerings" "%s" { func hclDatasourceSubaccountOfferingsBySubaccountAndEnvironment(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_offerings" "%s" { +data "btp_subaccount_service_offerings" "%s" { subaccount_id = "%s" environment = "cloudfoundry" }` @@ -115,7 +115,7 @@ data "btp_subaccount_service_offerings" "%s" { func hclDatasourceSubaccountOfferingsBySubaccountAndFields(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_offerings" "%s" { +data "btp_subaccount_service_offerings" "%s" { subaccount_id = "%s" fields_filter = "name eq 'html5-apps-repo'" }` diff --git a/internal/provider/datasource_subaccount_service_plan_test.go b/internal/provider/datasource_subaccount_service_plan_test.go index 05053eaa..78a2317e 100644 --- a/internal/provider/datasource_subaccount_service_plan_test.go +++ b/internal/provider/datasource_subaccount_service_plan_test.go @@ -11,7 +11,7 @@ import ( func TestDataSourceSubaccountServicePlan(t *testing.T) { t.Parallel() t.Run("happy path - service plan by id", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_plan_by_id") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_plan_by_id") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestDataSourceSubaccountServicePlan(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlanById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c"), + Config: hclProviderFor(user) + hclDatasourceSubaccountPlanById("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "id", "cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c"), @@ -35,7 +35,7 @@ func TestDataSourceSubaccountServicePlan(t *testing.T) { }) }) t.Run("happy path service plan by name", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_plan_by_name") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_plan_by_name") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -43,7 +43,7 @@ func TestDataSourceSubaccountServicePlan(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlanByNameAndOffering("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "lite", "destination"), + Config: hclProviderFor(user) + hclDatasourceSubaccountPlanByNameAndOffering("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "lite", "destination"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "id", "cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c"), @@ -65,7 +65,7 @@ func TestDataSourceSubaccountServicePlan(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlanWoOffering("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "standard"), + Config: hclDatasourceSubaccountPlanWoOffering("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "standard"), ExpectError: regexp.MustCompile(`Attribute "offering_name" must be specified when "name" is specified`), }, }, @@ -78,7 +78,7 @@ func TestDataSourceSubaccountServicePlan(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlanWoSubaccount("uut", "lite", "destination"), + Config: hclDatasourceSubaccountPlanWoSubaccount("uut", "lite", "destination"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), }, }, @@ -89,9 +89,9 @@ func TestDataSourceSubaccountServicePlan(t *testing.T) { func hclDatasourceSubaccountPlanById(resourceName string, subaccountId string, planId string) string { template := ` -data "btp_subaccount_service_plan" "%s" { +data "btp_subaccount_service_plan" "%s" { subaccount_id = "%s" - id = "%s" + id = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, planId) @@ -100,7 +100,7 @@ data "btp_subaccount_service_plan" "%s" { func hclDatasourceSubaccountPlanByNameAndOffering(resourceName string, subaccountId string, planName string, offeringName string) string { template := ` data "btp_subaccount_service_plan" "%s" { - subaccount_id = "%s" + subaccount_id = "%s" name = "%s" offering_name = "%s" }` @@ -110,7 +110,7 @@ data "btp_subaccount_service_plan" "%s" { func hclDatasourceSubaccountPlanWoOffering(resourceName string, subaccountId string, planName string) string { template := ` data "btp_subaccount_service_plan" "%s" { - subaccount_id = "%s" + subaccount_id = "%s" name = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, planName) diff --git a/internal/provider/datasource_subaccount_service_plans_test.go b/internal/provider/datasource_subaccount_service_plans_test.go index 746e2888..7dd79b94 100644 --- a/internal/provider/datasource_subaccount_service_plans_test.go +++ b/internal/provider/datasource_subaccount_service_plans_test.go @@ -11,7 +11,7 @@ import ( func TestDataSourceSubaccountServicePlans(t *testing.T) { t.Parallel() t.Run("happy path - service plans for subaccount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_plans_all") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_plans_all") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,10 +19,10 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlansBySubaccount("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountPlansBySubaccount("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), - resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "values.#", "30"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "values.#", "31"), ), }, }, @@ -30,7 +30,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { }) t.Run("happy path - service plans for subaccount and environment", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_plans_cloudfoundry") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_plans_cloudfoundry") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -38,7 +38,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlansBySubaccountAndEnvironment("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "cloudfoundry"), + Config: hclProviderFor(user) + hclDatasourceSubaccountPlansBySubaccountAndEnvironment("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "cloudfoundry"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "values.#", "0"), @@ -49,7 +49,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { }) t.Run("happy path - service plans for subaccount with fields filter", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_service_plans_namefilter") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_service_plans_namefilter") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -57,7 +57,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlansBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountPlansBySubaccountAndFields("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_service_plans.uut", "values.#", "2"), @@ -73,7 +73,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_service_plans" "uut" {}`, + Config: `data "btp_subaccount_service_plans" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -85,7 +85,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountPlansBySubaccount("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountPlansBySubaccount("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -96,7 +96,7 @@ func TestDataSourceSubaccountServicePlans(t *testing.T) { func hclDatasourceSubaccountPlansBySubaccount(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_plans" "%s" { +data "btp_subaccount_service_plans" "%s" { subaccount_id = "%s" }` @@ -105,7 +105,7 @@ data "btp_subaccount_service_plans" "%s" { func hclDatasourceSubaccountPlansBySubaccountAndEnvironment(resourceName string, subaccountId string, environment string) string { template := ` -data "btp_subaccount_service_plans" "%s" { +data "btp_subaccount_service_plans" "%s" { subaccount_id = "%s" environment = "%s" }` @@ -115,7 +115,7 @@ data "btp_subaccount_service_plans" "%s" { func hclDatasourceSubaccountPlansBySubaccountAndFields(resourceName string, subaccountId string) string { template := ` -data "btp_subaccount_service_plans" "%s" { +data "btp_subaccount_service_plans" "%s" { subaccount_id = "%s" fields_filter = "name eq 'standard'" }` diff --git a/internal/provider/datasource_subaccount_subscription_test.go b/internal/provider/datasource_subaccount_subscription_test.go index e67dc28c..7bfe4e04 100644 --- a/internal/provider/datasource_subaccount_subscription_test.go +++ b/internal/provider/datasource_subaccount_subscription_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountSubscription(t *testing.T) { t.Parallel() t.Run("happy path - get subscriptions by id and plan", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_subscription_by_id_and_plan") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_subscription_by_id_and_plan") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestDataSourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountSubscriptionByIdAndPlan("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "content-agent-ui", "free"), + Config: hclProviderFor(user) + hclDatasourceSubaccountSubscriptionByIdAndPlan("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "content-agent-ui", "free"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_subscription.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), resource.TestCheckResourceAttr("data.btp_subaccount_subscription.uut", "app_name", "content-agent-ui"), @@ -41,7 +41,7 @@ func TestDataSourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountSubscriptionNoSubaccountId("uut", "content-agent-ui", "free"), + Config: hclDatasourceSubaccountSubscriptionNoSubaccountId("uut", "content-agent-ui", "free"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -53,7 +53,7 @@ func TestDataSourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountSubscriptionNoAppName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "free"), + Config: hclDatasourceSubaccountSubscriptionNoAppName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "free"), ExpectError: regexp.MustCompile(`The argument "app_name" is required, but no definition was found`), }, }, @@ -65,7 +65,7 @@ func TestDataSourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountSubscriptionByIdAndPlan("uut", "this-is-not-a-uuid", "content-agent-ui", "free"), + Config: hclDatasourceSubaccountSubscriptionByIdAndPlan("uut", "this-is-not-a-uuid", "content-agent-ui", "free"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, diff --git a/internal/provider/datasource_subaccount_subscriptions_test.go b/internal/provider/datasource_subaccount_subscriptions_test.go index 9f12b4e3..8e574728 100644 --- a/internal/provider/datasource_subaccount_subscriptions_test.go +++ b/internal/provider/datasource_subaccount_subscriptions_test.go @@ -12,7 +12,7 @@ func TestDataSourceSubaccountSubscriptions(t *testing.T) { t.Parallel() t.Run("happy path - all subscriptions of subaccount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_subscriptions") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_subscriptions") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,10 +20,10 @@ func TestDataSourceSubaccountSubscriptions(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountSubscriptions("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), + Config: hclProviderFor(user) + hclDatasourceSubaccountSubscriptions("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_subscriptions.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), - resource.TestCheckResourceAttr("data.btp_subaccount_subscriptions.uut", "values.#", "6"), + resource.TestCheckResourceAttr("data.btp_subaccount_subscriptions.uut", "values.#", "8"), ), }, }, @@ -36,7 +36,7 @@ func TestDataSourceSubaccountSubscriptions(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_subscriptions" "uut" {}`, + Config: `data "btp_subaccount_subscriptions" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -48,7 +48,7 @@ func TestDataSourceSubaccountSubscriptions(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountSubscriptions("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountSubscriptions("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, diff --git a/internal/provider/datasource_subaccount_test.go b/internal/provider/datasource_subaccount_test.go index 7aecbeba..872698e4 100644 --- a/internal/provider/datasource_subaccount_test.go +++ b/internal/provider/datasource_subaccount_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccount(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount") + rec, user := setupVCR(t, "fixtures/datasource_subaccount") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,11 +22,11 @@ func TestDataSourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccount("test", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccount("test", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount.test", "id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount.test", "beta_enabled", "false"), - resource.TestCheckResourceAttr("data.btp_subaccount.test", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttrSet("data.btp_subaccount.test", "created_by"), resource.TestCheckResourceAttr("data.btp_subaccount.test", "created_date", "2023-05-15T11:50:47Z"), resource.TestCheckResourceAttr("data.btp_subaccount.test", "description", "Please don't modify. This is used for integration tests."), resource.TestCheckResourceAttr("data.btp_subaccount.test", "labels.#", "0"), @@ -43,7 +43,7 @@ func TestDataSourceSubaccount(t *testing.T) { }) }) t.Run("error path - subaccount doesn't exist", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount.err_subaccount_doesnt_exist") + rec, user := setupVCR(t, "fixtures/datasource_subaccount.err_subaccount_doesnt_exist") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -51,7 +51,7 @@ func TestDataSourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccount("test", "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"), + Config: hclProviderFor(user) + hclDatasourceSubaccount("test", "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"), ExpectError: regexp.MustCompile(`404 Not Found: \[no body\] \[Error: 404\]`), // TODO improve error text }, }, @@ -63,7 +63,7 @@ func TestDataSourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount" "test" {}`, + Config: `data "btp_subaccount" "test" {}`, ExpectError: regexp.MustCompile(`The argument "id" is required, but no definition was found`), }, }, @@ -75,7 +75,7 @@ func TestDataSourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccount("test", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccount("test", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -96,7 +96,7 @@ func TestDataSourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccount("test", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccount("test", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_trust_configuration_test.go b/internal/provider/datasource_subaccount_trust_configuration_test.go index ea3dfc07..ba360688 100644 --- a/internal/provider/datasource_subaccount_trust_configuration_test.go +++ b/internal/provider/datasource_subaccount_trust_configuration_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { t.Parallel() t.Run("happy path - with default idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_trust_configuration.default") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_trust_configuration.default") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,7 +22,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "sap.default"), + Config: hclProviderFor(user) + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "sap.default"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_trust_configuration.uut", "id", "sap.default"), resource.TestCheckResourceAttr("data.btp_subaccount_trust_configuration.uut", "description", ""), @@ -38,7 +38,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { }) }) t.Run("happy path - with custom idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_trust_configuration.custom_idp_exists") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_trust_configuration.custom_idp_exists") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -46,7 +46,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint-platform"), + Config: hclProviderFor(user) + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_trust_configuration.uut", "id", "terraformint-platform"), resource.TestCheckResourceAttr("data.btp_subaccount_trust_configuration.uut", "description", "Custom Platform Identity Provider"), @@ -62,7 +62,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { }) }) t.Run("error path - custom idp not existing", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_trust_configuration.custom_idp_not_existing") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_trust_configuration.custom_idp_not_existing") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -70,7 +70,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "fuh"), + Config: hclProviderFor(user) + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "fuh"), ExpectError: regexp.MustCompile(`API Error Reading Resource Trust Configuration \(Subaccount\)`), }, }, @@ -82,7 +82,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", ""), + Config: hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -103,7 +103,7 @@ func TestDataSourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "sap.default"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountTrustConfiguration("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "sap.default"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_trust_configurations_test.go b/internal/provider/datasource_subaccount_trust_configurations_test.go index 66885348..ace6c9c9 100644 --- a/internal/provider/datasource_subaccount_trust_configurations_test.go +++ b/internal/provider/datasource_subaccount_trust_configurations_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountTrustConfigurations(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_trust_configurations.subaccount_exists") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_trust_configurations.subaccount_exists") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,16 +22,16 @@ func TestDataSourceSubaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfigurations("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountTrustConfigurations("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_subaccount_trust_configurations.uut", "values.#", "2"), + resource.TestCheckResourceAttr("data.btp_subaccount_trust_configurations.uut", "values.#", "3"), ), }, }, }) }) t.Run("error path - subaccount not existing", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_trust_configurations.subaccount_not_existing") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_trust_configurations.subaccount_not_existing") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -39,7 +39,7 @@ func TestDataSourceSubaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfigurations("uut", "aaaaaaaa-bbbb-cccc-dddd-caffee00affe"), + Config: hclProviderFor(user) + hclDatasourceSubaccountTrustConfigurations("uut", "aaaaaaaa-bbbb-cccc-dddd-caffee00affe"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, @@ -51,7 +51,7 @@ func TestDataSourceSubaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountTrustConfigurations("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountTrustConfigurations("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -63,7 +63,7 @@ func TestDataSourceSubaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_trust_configurations" "uut" {}`, + Config: `data "btp_subaccount_trust_configurations" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -84,7 +84,7 @@ func TestDataSourceSubaccountTrustConfigurations(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountTrustConfigurations("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountTrustConfigurations("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_user_test.go b/internal/provider/datasource_subaccount_user_test.go index 7b14df18..0a4ddf30 100644 --- a/internal/provider/datasource_subaccount_user_test.go +++ b/internal/provider/datasource_subaccount_user_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountUser(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_user") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_user") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,15 +22,15 @@ func TestDataSourceSubaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountUserWithCustomIdp("uut", "5381d6a4-d67f-45b1-93a0-624876f74d03", "jenny.doe@test.com", "sap.default"), + Config: hclProviderFor(user) + hclDatasourceSubaccountUserWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "jenny.doe@test.com", "sap.default"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "subaccount_id", "5381d6a4-d67f-45b1-93a0-624876f74d03"), + resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "user_name", "jenny.doe@test.com"), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "origin", "sap.default"), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "active", "true"), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "family_name", "unknown"), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "given_name", "unknown"), - resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "id", "de350a51-fa8f-4bdf-bd75-79179b846911"), + resource.TestMatchResourceAttr("data.btp_subaccount_user.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "role_collections.#", "0"), resource.TestCheckResourceAttr("data.btp_subaccount_user.uut", "verified", "false"), ), @@ -44,7 +44,7 @@ func TestDataSourceSubaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountUserWithCustomIdp("uut", "this-is-not-a-uuid", "jenny.doe@test.com", "sap.default"), + Config: hclDatasourceSubaccountUserWithCustomIdp("uut", "this-is-not-a-uuid", "jenny.doe@test.com", "sap.default"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -56,7 +56,7 @@ func TestDataSourceSubaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_directory_user" "uut" {}`, + Config: `data "btp_directory_user" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "(subaccount_id|user_name)" is required, but no definition was found.`), }, }, @@ -68,7 +68,7 @@ func TestDataSourceSubaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserCustomIdp("uut", "5381d6a4-d67f-45b1-93a0-624876f74d03", "", "terraformint"), + Config: hclDatasourceDirectoryUserCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "", "terraformint"), ExpectError: regexp.MustCompile(`Attribute user_name string length must be between 1 and 256, got: 0`), }, }, @@ -80,7 +80,7 @@ func TestDataSourceSubaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceDirectoryUserCustomIdp("uut", "5381d6a4-d67f-45b1-93a0-624876f74d03", "jenny.doe@test.com", ""), + Config: hclDatasourceDirectoryUserCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "jenny.doe@test.com", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -101,7 +101,7 @@ func TestDataSourceSubaccountUser(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountUserWithCustomIdp("uut", "5381d6a4-d67f-45b1-93a0-624876f74d03", "jenny.doe@test.com", "sap.default"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountUserWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "jenny.doe@test.com", "sap.default"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/datasource_subaccount_users_test.go b/internal/provider/datasource_subaccount_users_test.go index a4516a6f..eabd7270 100644 --- a/internal/provider/datasource_subaccount_users_test.go +++ b/internal/provider/datasource_subaccount_users_test.go @@ -14,7 +14,7 @@ import ( func TestDataSourceSubaccountUsers(t *testing.T) { t.Parallel() t.Run("happy path with default idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_users.default_idp") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_users.default_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,17 +22,17 @@ func TestDataSourceSubaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountUsersDefaultIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), + Config: hclProviderFor(user) + hclDatasourceSubaccountUsersDefaultIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_users.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), - resource.TestCheckResourceAttr("data.btp_subaccount_users.uut", "values.#", "3"), + resource.TestCheckResourceAttr("data.btp_subaccount_users.uut", "values.#", "6"), ), }, }, }) }) t.Run("happy path with custom idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccount_users.custom_idp") + rec, user := setupVCR(t, "fixtures/datasource_subaccount_users.custom_idp") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -40,10 +40,10 @@ func TestDataSourceSubaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountUsersWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint-platform"), + Config: hclProviderFor(user) + hclDatasourceSubaccountUsersWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("data.btp_subaccount_users.uut", "subaccount_id", "ef23ace8-6ade-4d78-9c1f-8df729548bbf"), - resource.TestCheckResourceAttr("data.btp_subaccount_users.uut", "values.#", "1"), + resource.TestCheckResourceAttr("data.btp_subaccount_users.uut", "values.#", "3"), ), }, }, @@ -55,7 +55,7 @@ func TestDataSourceSubaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `data "btp_subaccount_users" "uut" {}`, + Config: `data "btp_subaccount_users" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -67,7 +67,7 @@ func TestDataSourceSubaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountUsersDefaultIdp("uut", "this-is-not-a-uuid"), + Config: hclDatasourceSubaccountUsersDefaultIdp("uut", "this-is-not-a-uuid"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -80,7 +80,7 @@ func TestDataSourceSubaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccountUsersWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", ""), + Config: hclDatasourceSubaccountUsersWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", ""), ExpectError: regexp.MustCompile(`Attribute origin string length must be at least 1, got: 0`), }, }, @@ -101,7 +101,7 @@ func TestDataSourceSubaccountUsers(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclDatasourceSubaccountUsersWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint-platform"), + Config: hclProviderForCLIServerAt(srv.URL) + hclDatasourceSubaccountUsersWithCustomIdp("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint-platform"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, @@ -118,7 +118,7 @@ func hclDatasourceSubaccountUsersDefaultIdp(resourceName string, subaccountId st func hclDatasourceSubaccountUsersWithCustomIdp(resourceName string, subaccountId string, origin string) string { template := ` data "btp_subaccount_users" "%s" { - subaccount_id = "%s" + subaccount_id = "%s" origin = "%s" }` return fmt.Sprintf(template, resourceName, subaccountId, origin) diff --git a/internal/provider/datasource_subaccounts_test.go b/internal/provider/datasource_subaccounts_test.go index b0b4e9b0..83988149 100644 --- a/internal/provider/datasource_subaccounts_test.go +++ b/internal/provider/datasource_subaccounts_test.go @@ -10,7 +10,7 @@ import ( func TestDataSourceSubaccounts(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_subaccounts.all") + rec, user := setupVCR(t, "fixtures/datasource_subaccounts.all") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -18,9 +18,9 @@ func TestDataSourceSubaccounts(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceSubaccounts("uut"), + Config: hclProviderFor(user) + hclDatasourceSubaccounts("uut"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_subaccounts.uut", "values.#", "1"), + resource.TestCheckResourceAttr("data.btp_subaccounts.uut", "values.#", "2"), ), }, }, diff --git a/internal/provider/datasource_whoami_test.go b/internal/provider/datasource_whoami_test.go index c2a64417..76a96223 100644 --- a/internal/provider/datasource_whoami_test.go +++ b/internal/provider/datasource_whoami_test.go @@ -10,7 +10,7 @@ import ( func TestDataSourceWhoami(t *testing.T) { t.Parallel() t.Run("happy path with default idp", func(t *testing.T) { - rec := setupVCR(t, "fixtures/datasource_whoami") + rec, user := setupVCR(t, "fixtures/datasource_whoami") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -18,11 +18,11 @@ func TestDataSourceWhoami(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclDatasourceWhoami("uut"), + Config: hclProviderFor(user) + hclDatasourceWhoami("uut"), Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.btp_whoami.uut", "id", "john.doe@int.test"), - resource.TestCheckResourceAttr("data.btp_whoami.uut", "email", "john.doe@int.test"), - resource.TestCheckResourceAttr("data.btp_whoami.uut", "issuer", "accounts.sap.com"), + resource.TestCheckResourceAttr("data.btp_whoami.uut", "id", user.Username), + resource.TestCheckResourceAttr("data.btp_whoami.uut", "email", user.Username), + resource.TestCheckResourceAttr("data.btp_whoami.uut", "issuer", user.Issuer), ), }, }, diff --git a/internal/provider/fixtures/datasource_directory.yaml b/internal/provider/fixtures/datasource_directory.yaml index 194246da..268d366b 100644 --- a/internal/provider/fixtures/datasource_directory.yaml +++ b/internal/provider/fixtures/datasource_directory.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 04697639-5dc0-466a-f504-ebffa0165c94 + - 2dff5ae7-6848-f540-316c-70a7581712ae X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 11:24:57 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b4752108-a32a-45e1-7411-a0de49bf4926 + - c5a62e3e-63b2-4777-7400-f582d2a77558 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.662662ms + duration: 386.161579ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1707d586-f6b0-c45b-acda-b80a914661ff + - c4e11af3-ec3f-43cd-803f-e30004cd9c68 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -96,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 11:24:57 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1e23ab55-163f-40fc-54db-de904103caae + - 5da682ef-c5c8-4207-7d49-58d255bc6777 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 217.64478ms + duration: 269.567962ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 536fef24-afd4-9250-a948-3dfb9074e111 + - 58ef7c8d-572f-1fe8-b5d8-774aef302a31 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 11:24:57 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0b058bfc-1b5b-4b75-719b-ed0a91f1144b + - 8e09bc97-cb12-4cbb-627a-e4940ee43ee6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.751145ms + duration: 216.109607ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d061cceb-6caa-7514-c0f7-19326bfb09ea + - 454b0803-0c64-228f-5b02-8ade64bddd22 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -224,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 11:24:58 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 88633e16-d5d9-4f8d-6f75-82e5b414b877 + - e4041e54-be8c-4f25-7e81-f50a61b99854 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 315.521444ms + duration: 444.940002ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 92f89258-0272-6516-f347-88aa592735cb + - 9a6e5ccb-3715-9bed-ddec-d15235031a42 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:03 GMT + - Tue, 01 Aug 2023 11:24:59 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 93a38eb4-8d91-46c4-7db6-59b8e6b67b11 + - f04e7720-c5bd-4490-46c1-6fd903e640db X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 487.708464ms + duration: 325.468854ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dd96ed44-3f54-5bf5-eeef-d93eaf99eae5 + - e1cf8666-f825-d3f7-2569-552d27acf3bf + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -352,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:04 GMT + - Tue, 01 Aug 2023 11:24:59 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - c1dca1f9-219c-49ad-7e36-6c4b23c9e4db + - 26753be2-f096-4cff-7410-40dd61f9bb9a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 186.079489ms + duration: 230.691882ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d058fa91-cf23-69b5-4bd6-ba632725e30a + - 15bc80d2-693b-948a-305d-ba84995d44d0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:05 GMT + - Tue, 01 Aug 2023 11:24:59 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b0d6eaab-2c8f-4dd1-6558-9996b3dde5b3 + - 422f9491-d95f-4cac-6522-62a6b8489397 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.858773ms + duration: 319.578571ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fd3155b4-1030-f8e2-d0c2-c72d6b5282dd + - babe805e-af95-0456-4c24-a033cb987a8b + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -480,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:06 GMT + - Tue, 01 Aug 2023 11:24:59 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ed5d4dc1-5ec1-462b-7cad-45f781a703c5 + - 6e81360d-e0f8-44fe-49b5-4f00144f348a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 194.292407ms + duration: 198.454184ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 92e70c62-db91-ec00-2e8f-dcd7dd1c860f + - b938ec64-9328-b9d8-cb47-f04904f22ecc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:06 GMT + - Tue, 01 Aug 2023 11:25:00 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b6679e4-af0e-49b7-45c8-746c4031bd62 + - 49eacaa7-a0f7-4596-4448-f9b6dd8ea270 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.998581ms + duration: 443.958792ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc9e9925-2a62-6819-daa8-05e9f60d8368 + - 322345d6-57ad-6340-90b0-f017f2163bab + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -608,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"5357bda0-8651-4eab-a69d-12d282bc3247","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":"May 16, 2023, 8:39:33 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 16, 2023, 8:39:33 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:07 GMT + - Tue, 01 Aug 2023 11:25:00 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5a8f4209-c975-481d-44c0-33ab69ce74e2 + - 818f4a9c-375b-469a-6f06-bc457bc993ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 201.568299ms + duration: 239.657896ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3ac1d246-bc2a-749b-67a6-c91efa7240c4 + - 4d69d130-a5aa-18fe-41b2-c9ddd32b7d20 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:08 GMT + - Tue, 01 Aug 2023 11:25:01 GMT Expires: - "0" Pragma: @@ -695,12 +737,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d28ee8d8-4e05-4fdd-7fde-0d19db8983ed + - 61a66d5d-3c51-4487-7163-aa524ab523c4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 342.092734ms + duration: 248.303384ms - id: 11 request: proto: HTTP/1.1 @@ -718,8 +760,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c584d4f7-6fab-d8d5-280f-1b6f6b542190 + - 88800fb6-a0c8-4be6-9cc6-8ac11c934471 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -736,14 +782,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:46:46 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}' + body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jun 1, 2023, 11:13:41 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"customProperties":[{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-1","value":"Label text 1"},{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-2","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:08 GMT + - Tue, 01 Aug 2023 11:25:01 GMT Expires: - "0" Pragma: @@ -758,36 +804,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - cd6e604c-904c-4dd4-4725-a891653f2219 + - 15ba8c00-d3d6-4547-6c74-2eba58b9221e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 245.747779ms + duration: 351.265936ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc674b17-7966-7dea-eacb-b60fccca4a25 + - a2d11cdb-a06e-dd18-f2b1-01225b1546ed X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -798,18 +848,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:09 GMT + - Tue, 01 Aug 2023 11:25:01 GMT Expires: - "0" Pragma: @@ -823,12 +873,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b410ac98-f60d-4490-43c3-00e31331fa0e + - 23690131-971e-4680-669a-4d7b447930b3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 487.28219ms + duration: 250.86281ms - id: 13 request: proto: HTTP/1.1 @@ -846,8 +896,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 16a94c14-6a6f-afb9-c2bc-56903e667ce9 + - d30630b0-a47a-88b7-fe03-fefba3db94ec + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -864,14 +918,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:46:46 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["DEFAULT","AUTHORIZATIONS","ENTITLEMENTS"],"contractStatus":"ACTIVE"}' + body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jun 1, 2023, 11:13:41 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"customProperties":[{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-1","value":"Label text 1"},{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-2","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:10 GMT + - Tue, 01 Aug 2023 11:25:02 GMT Expires: - "0" Pragma: @@ -886,36 +940,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - d9e065ad-5423-48e9-7d89-3458bf54b8fe + - 695306d2-b46f-40a1-7be7-61c346c4135c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 337.190969ms + duration: 185.142318ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 387d85ae-66e6-c937-daa3-9e7d9ddb95fa + - 8a55a444-2b5b-269b-787c-25f54475b6d2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -926,18 +984,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:11 GMT + - Tue, 01 Aug 2023 11:25:02 GMT Expires: - "0" Pragma: @@ -951,12 +1009,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a49254a6-a8e8-45d9-43f9-85f71e6d8ead + - 23fecf09-4e02-4442-6a4a-16ac03e0179e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 502.301544ms + duration: 299.322646ms - id: 15 request: proto: HTTP/1.1 @@ -974,8 +1032,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 01acf623-5ffc-e4af-5206-e9765cf21e95 + - d35f1771-205b-dc19-86fa-f373c1c5eb69 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -992,14 +1054,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:46:46 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["DEFAULT","AUTHORIZATIONS","ENTITLEMENTS"],"contractStatus":"ACTIVE"}' + body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jun 1, 2023, 11:13:41 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-1","value":"Label text 1"},{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-2","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:12 GMT + - Tue, 01 Aug 2023 11:25:02 GMT Expires: - "0" Pragma: @@ -1014,36 +1076,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6891f718-000e-4da1-6284-0797566023be + - 3106ba56-63a2-4e7a-47f3-db3f1a7d87d9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 305.215009ms + duration: 212.003453ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d9cef7ff-e2be-2bd8-ac8e-9c2ff1ab56a3 + - 2359ed67-eea9-7219-e46f-aedad6987296 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1054,18 +1120,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:13 GMT + - Tue, 01 Aug 2023 11:25:03 GMT Expires: - "0" Pragma: @@ -1079,12 +1145,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a80fa934-be99-425b-7da4-e42aa05fce98 + - a6488008-c8ec-4f42-7899-7d6ed26d44fe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.273797ms + duration: 312.97211ms - id: 17 request: proto: HTTP/1.1 @@ -1102,8 +1168,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9a2d9f3f-9c2f-9bd1-3ef8-e007faa8654c + - 3beea762-6577-e2e3-a932-c58cf948571b + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1120,14 +1190,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:46:46 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["DEFAULT","AUTHORIZATIONS","ENTITLEMENTS"],"contractStatus":"ACTIVE"}' + body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jun 1, 2023, 11:13:41 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-1","value":"Label text 1"},{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-2","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:13 GMT + - Tue, 01 Aug 2023 11:25:03 GMT Expires: - "0" Pragma: @@ -1142,36 +1212,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6ab1f8ca-2c5a-4881-55ef-ece5d43facdc + - b5c4d3f7-3e64-4b80-7a8f-4762402d19a0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 224.378793ms + duration: 190.886877ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 18b4286b-968d-6dcd-0928-f786b1c83381 + - 692a7810-ab87-52b9-6a05-cd8d01927893 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1182,18 +1256,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:14 GMT + - Tue, 01 Aug 2023 11:25:04 GMT Expires: - "0" Pragma: @@ -1207,12 +1281,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d23205d6-be3a-4302-61af-e95a4684a6ce + - 165081c5-1164-4bce-43a1-73b590c62657 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.95553ms + duration: 331.115657ms - id: 19 request: proto: HTTP/1.1 @@ -1230,8 +1304,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a2624a3-6e32-f9b7-3e3d-857fa8d684fd + - 66178a6a-87b6-073d-8dae-3eb03c791e88 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1248,14 +1326,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe@int.test","modifiedDate":"May 16, 2023, 8:46:46 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["DEFAULT","AUTHORIZATIONS","ENTITLEMENTS"],"contractStatus":"ACTIVE"}' + body: '{"guid":"05368777-4934-41e8-9f3c-6ec5f4d564b9","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":"May 16, 2023, 8:46:24 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jun 1, 2023, 11:13:41 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"05368777-4934-41e8-9f3c-6ec5f4d564b9","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"customProperties":[{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-1","value":"Label text 1"},{"accountGUID":"05368777-4934-41e8-9f3c-6ec5f4d564b9","key":"my-label-2","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:15 GMT + - Tue, 01 Aug 2023 11:25:04 GMT Expires: - "0" Pragma: @@ -1270,36 +1348,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ea0d8c4d-2eb0-4ae0-7d71-bf2fe528a29f + - 28ccffad-42de-4a57-78e8-72f7f4659b2a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 226.780431ms + duration: 297.641376ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f4372f95-6aa7-9910-284d-f351a2ac3a35 + - 06d563cc-ffa4-9ca7-1bbe-e38bb56f6cf2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1310,18 +1392,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:16 GMT + - Tue, 01 Aug 2023 11:25:04 GMT Expires: - "0" Pragma: @@ -1335,9 +1417,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 14149d26-4e71-4d9f-4aa2-f6efd602afcf + - 5e8ddb33-aba1-4252-4309-ead7c549461d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 419.072366ms + duration: 297.044872ms diff --git a/internal/provider/fixtures/datasource_directory_entitlements.yaml b/internal/provider/fixtures/datasource_directory_entitlements.yaml index f668086c..17298add 100644 --- a/internal/provider/fixtures/datasource_directory_entitlements.yaml +++ b/internal/provider/fixtures/datasource_directory_entitlements.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6c402631-5d4c-718a-6a02-326dd924eb78 + - 90fa886b-fde5-ece8-e2e0-39bdcb508ee3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:26 GMT + - Tue, 01 Aug 2023 07:33:02 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2b6493df-0bcc-4c2d-4238-11eaeea22159 + - ee1da8b8-348d-4ef0-5f8b-15135c74e87c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 895.337028ms + duration: 284.57822ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac4b8f55-ce42-e4d2-4895-1ac35dd4232d + - a664ac0e-805b-04d5-c42a-553cc2ee18a0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -98,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:27 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - b4d81771-7e12-4ffd-4bbd-5d4c23b3ed0a + - 80d127f2-f68a-4cc9-7df9-436bdb02448c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 506.850623ms + duration: 754.754634ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a6d45f95-59b7-3b90-18ad-4ac579e629df + - e8f05d5e-4a6d-a392-d76f-8fe13df074d1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:29 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5231882c-a677-42c2-4fac-03fb977b4f10 + - 30ed61ab-4280-43a1-6fab-a4e5d3c2b8e3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 692.313087ms + duration: 449.639825ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a9ec3f36-002e-b1c4-392b-61c40f15558d + - 653884d3-1343-069a-d3d3-0eda42f99c1f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -228,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:30 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ff9f5024-52d3-4137-5488-18255f828136 + - 6e7293ec-db94-4af1-4390-4b8955d6ba94 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 902.766516ms + duration: 626.692083ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 32b66255-90af-eed6-cc40-872b175c6eeb + - 2029aede-c277-62a2-abee-dbf3da52f163 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:32 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d4b21e41-cc77-4262-71bb-26479b6c88ec + - 7b426c96-d7fb-481a-6062-f4eb01d32432 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 528.115424ms + duration: 233.756582ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c59ff473-02fe-2c4d-dd25-60eb8852762f + - ab3929a4-af34-3028-7e46-210ec05a41ad X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -358,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:33 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ccca9322-5276-4c92-71bd-189a3112ed88 + - a69227ec-095c-4efa-41f8-7bcae627187d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 479.972454ms + duration: 467.676082ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a793e38e-f2a6-d3aa-b056-b6162538ecfd + - cc686273-1f9a-9c02-3edc-b445dd6b52b0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:34 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - acd3963f-a0af-4a37-7964-570b985b05eb + - 683e9b88-7544-4e2e-73d2-4a8d48be5c02 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 537.552747ms + duration: 258.167915ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 96a5d8b2-3bf3-a34b-8a67-133c52b9c64c + - eca2dad3-257b-c5de-f77c-9152802edc8a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -488,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:35 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1105f44d-54ef-49c0-7202-3b67bd535f84 + - f3448fb4-fd41-4ee2-4b4f-57f7271a8602 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 403.87254ms + duration: 612.104447ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 88dcd09e-34a9-23bb-c040-d63ad7c672f3 + - 500e9597-ec61-550c-1f9e-f7c8fe84f6af X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:36 GMT + - Tue, 01 Aug 2023 07:33:07 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5dbf2106-d95d-4b9f-6ebe-e4fd7bf2dc71 + - ce95586c-dc84-4401-669a-22bfc8e81d12 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 465.016875ms + duration: 401.118835ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 51ece998-e024-7234-774a-cd5be66423e1 + - 6d770942-114b-ea01-6087-74472629b954 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -618,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":{"id":"default","name":"Default","inherited":false},"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:37 GMT + - Tue, 01 Aug 2023 07:33:07 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 37a8810f-c3c5-435d-525c-7e6976f3c9d3 + - 733602a8-625a-424c-7f35-0aeef8ffcf0f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 402.194831ms + duration: 527.153302ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 34ca6ce9-47cd-4c6d-1df8-a97cb0d0b550 + - 07eea3f5-e1ed-9e02-19fc-c7093aa7c9c2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Fri, 02 Jun 2023 06:54:39 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9be31ae0-a369-4e36-501b-7263d8f6c5b0 + - d7b0b252-96db-4b29-7e19-ba1951103fb2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 561.038579ms + duration: 281.755127ms diff --git a/internal/provider/fixtures/datasource_directory_labels.yaml b/internal/provider/fixtures/datasource_directory_labels.yaml index f3faecb5..ab4912b6 100644 --- a/internal/provider/fixtures/datasource_directory_labels.yaml +++ b/internal/provider/fixtures/datasource_directory_labels.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4a02a88b-ec8b-67f5-6e83-78b82719e86c + - b05431af-8ce7-24d0-2eb5-b00011536995 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:31 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7e21605f-c2b7-44aa-580d-cd1b58cef170 + - 9fecc902-d152-43ae-585e-52cf82d96678 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 703.021799ms + duration: 192.783169ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9d886d04-3fcd-fb76-e572-1c50fa8bc311 + - fa813757-9aab-7490-1285-af3d76657315 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:32 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ecb5c451-57df-493d-6a60-f091af2acb70 + - e29f1c5f-542d-4e2d-7898-ae34cbe20ca1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 259.986716ms + duration: 161.645742ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ba3ef4d-1600-cb20-9765-589b47e6766a + - 9386c96b-34b5-d2b5-cfdd-8aaeafd7fc78 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:33 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4bf3bfef-fda6-4ca7-5191-bddffe625a86 + - 547ce5bd-d690-418d-5d46-12f0e54dfd98 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 502.966421ms + duration: 289.503663ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8582c8bc-d0bc-eaf1-277a-79a58ee1fea2 + - dbf4a576-b5a3-3a34-bf30-b4921c01db90 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -235,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:34 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a0cf7cfb-b234-4d8a-6f8d-60dc47e32928 + - af6f404b-776e-419b-51c6-dd74ea40d1cd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 227.239322ms + duration: 154.991952ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8fc2392-df01-5860-d252-8a1d008ded0d + - 9042c7e5-4529-8e48-e717-bb4d8df0de6b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:35 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0089b990-b29c-47f2-7ca0-65471bb9d7bb + - 6e3846a7-8459-45a5-5ac1-9ae6cd5c99eb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 540.666036ms + duration: 259.578859ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5fd2a744-c8db-23bb-01e4-2a337f1b5957 + - eceacff5-9734-759e-e1a7-009a1fca1cab X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -365,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:36 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 92415819-d376-4f95-6191-bafe4fc98822 + - 3386f4e8-d264-4cf4-5072-c2815be9a782 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 204.479881ms + duration: 154.483688ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4badd300-7680-dc3f-6b83-66c89b9eb9ac + - 46ba562a-bbd6-e82f-ec7a-e4ce50c9ac25 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:37 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2c15c831-594a-4a77-4763-01cddbb57f4f + - 79bc71b2-eba5-40f8-547c-b95053a58184 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 472.450504ms + duration: 256.179197ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0fe1721f-8b04-9062-dd81-2ad5cf6d1642 + - 38c5dd5e-14ed-0f57-1998-095be5291828 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -495,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:38 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8fecc41f-ae01-48f1-7090-558e2448ba56 + - 65a91285-d4ae-40c3-6ac6-aec933ce2cd3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 187.544145ms + duration: 359.017654ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5f2a87ec-d1f7-7dc5-a7ea-4a4f240b7f59 + - 8d84d725-5287-57df-0163-902e0c7e9541 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:38 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7b7fb219-3ad8-4b5a-63be-36aa0ee424d8 + - 2144e7ce-8dfd-4f27-7d62-0aa2611745b6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 450.580704ms + duration: 361.319766ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9a686955-7b9e-c307-f0ab-ae098b628fe7 + - 64763d86-8cfc-a301-c58e-579f3dc510c1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -625,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:39 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1cb74946-c85f-46c7-5b40-5dfb8bc5b735 + - 8c920e67-11ec-4eff-6fd5-b2e3c627bc66 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 166.562502ms + duration: 158.572622ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fea25b38-6ffb-5117-6265-e6291c350d78 + - 0f960ccf-1b35-a6a2-970e-ae76406a3fa4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:40 GMT + - Tue, 01 Aug 2023 07:34:28 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 659becc0-a7d3-44f2-555e-087aa003283c + - 3ad460bb-605c-4917-551c-6fbcb7d90ce8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 458.786075ms + duration: 331.960899ms diff --git a/internal/provider/fixtures/datasource_directory_role.not_security_enabled.yaml b/internal/provider/fixtures/datasource_directory_role.not_security_enabled.yaml index 4563dbda..e89d48d2 100644 --- a/internal/provider/fixtures/datasource_directory_role.not_security_enabled.yaml +++ b/internal/provider/fixtures/datasource_directory_role.not_security_enabled.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d402f897-177e-2ec1-978e-749bd7771c68 + - 48c68c99-a24a-fbb4-d7f4-7ae1c2b02101 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c27489ed-838e-454d-7491-57a2a2b6c527 + - 7225a3ee-7bcf-4fc2-4040-f4b40d955f73 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.979588ms + duration: 534.66262ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6b494094-b689-c480-96d0-68fda7254f3c + - a45f097d-70ce-70b2-501c-27e3b29cbd08 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -114,6 +120,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Server-Message: @@ -121,9 +129,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c83dd148-7b0b-4614-7ed6-9991de3ddaac + - da1f5aad-eaa7-444f-5117-ecdca9366205 X-Xss-Protection: - "0" status: 400 Bad Request code: 400 - duration: 187.600688ms + duration: 213.841637ms diff --git a/internal/provider/fixtures/datasource_directory_role.yaml b/internal/provider/fixtures/datasource_directory_role.yaml index 08dbe975..29d6d6b4 100644 --- a/internal/provider/fixtures/datasource_directory_role.yaml +++ b/internal/provider/fixtures/datasource_directory_role.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f0ec0260-e7d2-d686-abee-66d4261c5196 + - 9b30e5d6-939e-5d46-d364-4c5f5142196a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:50 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 406dc150-1a92-4329-6546-c6a922a5fe46 + - 024a2a30-cc87-462e-4acf-99f240b91292 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 901.815908ms + duration: 181.167551ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 02d24584-e2e3-2cb9-109d-47a7bbab31a4 + - 7ba6197b-b212-e150-70a1-c09245a15dbb + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - d6e58d96-d171-49c3-4953-2ca7b012ff0d + - 1a1b0bc2-497d-4e00-45f9-fef62417dabf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.24321ms + duration: 303.263606ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ffe0568c-8d75-9918-5a0e-7a5fb589f162 + - 54e90ee5-0010-2fca-1d78-c02791a7d5e6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:31 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1462dd71-8e1c-45ee-72f6-316d947d83c7 + - 6a2ab471-4f1f-42d0-46e1-4a4c67df5986 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.307713ms + duration: 309.081341ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c4db305c-cf6e-fa73-f6dd-204f09cc87d6 + - 09203864-2eeb-87fe-4659-9385eaeb97c0 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -231,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:31 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - eeb09968-08a1-4288-44c6-79c1a369647c + - 82244930-8379-48f9-5b60-fdd74a13dc12 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 333.809468ms + duration: 280.466308ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4eac23bd-16c8-89af-ea21-1616ef44e1e1 + - 3ab10e69-c095-d82c-fa6b-53a9e8f62452 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:33:32 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6ce3b87e-4e68-4d59-566d-164849e9ed35 + - d9f7faef-d255-4c5c-7869-8f1e0a251115 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.261103ms + duration: 230.251401ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2baad3e5-eb28-4a15-4016-d7111a793454 + - a72fa398-467f-d453-0bc8-793b2262420c + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -359,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:33:32 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 66384ebf-fd8f-465f-6e9a-98f754bfa15d + - 83fe0b07-28bc-45f6-518b-be5261ac8635 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 318.637488ms + duration: 511.488097ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 03878541-d673-39c3-11d2-2a6309827988 + - a664de34-2038-910e-92a8-07bf293abaea X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:33:33 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ff5484a8-2af9-442b-4b13-3e472e0c9616 + - 551266b4-a91f-48d0-50ae-703201cc8be8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 352.90997ms + duration: 350.571081ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 72fb3889-c155-a57e-56a5-c8d292a5e84d + - 16f09457-53d0-148d-349d-c0ca79da37a9 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -487,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:33 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e3863af5-6ae7-4ba4-7bf9-4aec711dda0d + - dff82534-0e6c-4861-46c5-9dd7d981a103 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 304.466033ms + duration: 479.183961ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2b6ec0e4-c114-52bc-80c9-b013ecd09144 + - 5673308f-b46c-e694-8980-10f9cc3cfb2e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:33 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7db84d42-8947-44aa-7a0b-462579126be0 + - 3934fcc2-348e-41b1-5dc6-c52bcb4cc31a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 310.63387ms + duration: 211.247411ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f4c61b2c-cea0-f742-e7ef-2b20a9f80ec8 + - d776269d-ee83-2703-a646-f933923a2f39 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -615,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3939f01b-ee89-4287-5f7c-10f2258f0c24 + - 53993a4f-6229-4284-5ce5-5dc50822eb6d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 274.539389ms + duration: 264.325645ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ebf2dd9f-635e-219f-adb3-c96c5a9e5495 + - 3985168d-bd2b-f8a7-c9ea-d215c97f331d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d9571bc3-3d9d-41d7-49de-78271ebed93d + - 4763518a-1a01-41a4-6fed-ee77a79cf306 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 349.763346ms + duration: 276.191419ms diff --git a/internal/provider/fixtures/datasource_directory_role_collection.not_security_enabled.yaml b/internal/provider/fixtures/datasource_directory_role_collection.not_security_enabled.yaml index eea9fcc2..e4210a2d 100644 --- a/internal/provider/fixtures/datasource_directory_role_collection.not_security_enabled.yaml +++ b/internal/provider/fixtures/datasource_directory_role_collection.not_security_enabled.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3b0076ec-d728-5965-93f7-846dc06c5416 + - f8760efe-e755-95dd-b363-758e839b5f06 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 80068ec6-f94e-4129-7463-f47324bd1aba + - c5f638b9-ee2c-4bdb-721b-73d0a30c4346 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 334.553509ms + duration: 359.501719ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 089c203a-b251-947a-b252-40316ab7aab3 + - 0a7da353-e016-0f91-a44f-fffdc53465d1 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -114,6 +120,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Server-Message: @@ -121,9 +129,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 09d3bdbf-83c4-435a-5100-36e04ffd9dfd + - 064e89b2-7baa-43c4-5da4-4e90b101b3b6 X-Xss-Protection: - "0" status: 400 Bad Request code: 400 - duration: 196.072458ms + duration: 139.333121ms diff --git a/internal/provider/fixtures/datasource_directory_role_collection.yaml b/internal/provider/fixtures/datasource_directory_role_collection.yaml index 80b25011..a4155bc3 100644 --- a/internal/provider/fixtures/datasource_directory_role_collection.yaml +++ b/internal/provider/fixtures/datasource_directory_role_collection.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e1152579-bcd0-1ad0-d401-3d2d95a6f01d + - 0f9e9ad3-cac5-297f-2af5-8bb97329c072 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:51 GMT + - Tue, 01 Aug 2023 07:34:23 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b787011d-2da3-43b6-5f54-bbda1cdcc6ca + - a6054f04-9759-4487-740d-835ef2812b15 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 996.830225ms + duration: 165.672602ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b07e4ad2-4a0f-c7b2-4e57-a1427f7b4a01 + - bfeb579f-9f56-adfe-73c6-c80528e5b125 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:34:23 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8f93ce18-dd31-4aa7-4dfc-1a222dacdc59 + - 8d7774ec-d17d-48af-41a8-463f7d07dbd2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 316.065223ms + duration: 372.037161ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 166d1fb6-8926-ff13-7dc6-63c252091c4d + - ea737e29-014e-14fa-f403-a3390f378bd0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:34:23 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e53ab664-0b60-47fd-414b-8a42e782d4f2 + - 453c3de8-8324-4863-6703-fdd2fc8bdf1b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 340.71704ms + duration: 178.102478ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b4ab7600-179c-b009-3ef7-2846a4108055 + - 37402e86-ea2b-bf63-a965-11ddbd7b2d6e + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -231,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:34:24 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0f391eb3-f7f5-461e-5d87-0ac79b41dd26 + - 5c72ad60-6bde-49b9-40c1-5b9d8cb5e046 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 257.925812ms + duration: 265.294074ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a819abb9-70e1-5a10-f7a7-6b93a7c17585 + - 56618034-7710-0346-e90d-b2c2eda90fdc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:54 GMT + - Tue, 01 Aug 2023 07:34:24 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fd24ebad-22c9-4dc1-573a-6d16987b3c23 + - 751957bc-67c2-4dab-449e-a12ad34b2fe0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 281.038765ms + duration: 271.46653ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b5c9f630-690d-6085-6edc-e2c9727bf9f3 + - ed58cde0-b7d2-846e-6b0a-d68551ca2cfc + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -359,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3a85d05a-f4a7-4318-43bc-0ad21409cf2b + - edae88d5-1048-4cf9-606c-380e0cf95e31 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 250.301119ms + duration: 367.058694ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 400c10a3-c872-6e0d-68a4-6b1f0702e05c + - 0101805a-053c-5bbd-2c46-6a86ebb6cf04 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 803c5803-680c-444b-578c-a3a59831a70c + - 48b5f8f4-d3f0-485a-5151-8d8492cf4f95 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.020863ms + duration: 356.984594ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a129359a-ce77-cf5e-809f-1bf67a0ad5df + - 161266bf-af45-6297-7c3c-f4ce871f7456 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -487,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f5f69bfd-74c2-494e-7b20-6dfefa8489c7 + - d2f8d218-d7bd-4acb-4a4c-9230b578a45a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 240.867982ms + duration: 407.421738ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 45641ea4-f50d-ed5a-b1e7-e8a28c133143 + - 0d93a2a5-1c6b-b877-1201-e1a76b69351b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - feafa0d4-2105-4240-712b-5738ee1cb1ab + - 484cbb4b-692d-4fde-6cbf-fb29bcc0be09 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 313.460295ms + duration: 325.773574ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cbe24bae-4679-994d-dcd2-6214d83e1403 + - aebb0f5f-0e16-e867-bfbd-904e07d1dd7f + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -615,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 68677b03-c971-4865-5b1d-3b69be33a2bb + - 6dae5ad5-8381-4da9-5277-b3d8e6cb329b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 298.375206ms + duration: 232.021918ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e880eb93-627e-fcbd-0a31-c9fbb86c8fb2 + - 3e5801d5-d570-0e2d-e7de-0f9112f6e65f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9e6978f6-245a-47e0-5255-b39172772f29 + - 1b78c3d8-9bc4-403c-5069-7e0875dda556 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 359.919344ms + duration: 259.980283ms diff --git a/internal/provider/fixtures/datasource_directory_role_collections.not_security_enabled.yaml b/internal/provider/fixtures/datasource_directory_role_collections.not_security_enabled.yaml index 996f10b2..2002ad8f 100644 --- a/internal/provider/fixtures/datasource_directory_role_collections.not_security_enabled.yaml +++ b/internal/provider/fixtures/datasource_directory_role_collections.not_security_enabled.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 53e45b8b-a553-2356-3f0c-136a740bf70d + - 333bf29c-3cef-bf8c-30c7-7f79b7412492 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:34:28 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e588d5fa-b320-4142-7618-fcf789f156ce + - cc4e4db1-3fc4-42a7-405a-465156048f67 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.415934ms + duration: 185.406012ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 95661a70-9d94-dd82-1648-e899a576da32 + - 75a4899e-6dab-03dc-3293-f89d3c7885b7 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:34:28 GMT Expires: - "0" Pragma: @@ -114,6 +120,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Server-Message: @@ -121,9 +129,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6eaf675d-379c-4dd5-45a9-ba10f7a1e329 + - 42671229-4f16-4bd0-7bf7-c7545ee0a272 X-Xss-Protection: - "0" status: 400 Bad Request code: 400 - duration: 213.905582ms + duration: 286.153149ms diff --git a/internal/provider/fixtures/datasource_directory_role_collections.yaml b/internal/provider/fixtures/datasource_directory_role_collections.yaml index 2f6afddc..bcb73ef4 100644 --- a/internal/provider/fixtures/datasource_directory_role_collections.yaml +++ b/internal/provider/fixtures/datasource_directory_role_collections.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9b228a52-72d3-fe62-3b3c-008552fef6be + - 74b7b8c2-e8f9-c6df-e041-cb3bdadd4b07 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:51 GMT + - Tue, 01 Aug 2023 07:34:23 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5859eece-cded-4691-67cf-33b6921e8aaf + - 2beacf4d-bd6c-40d1-5468-565b1ecff934 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.006536559s + duration: 198.424811ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f344dc4a-2fc5-eb46-fb48-a5c688d3bfa1 + - 6d39c0a1-299f-d61c-371f-37f2307da383 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:34:24 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7e836704-1a4b-4e01-4c0c-e1c47cc14b28 + - 1e46382a-2bbe-48c3-4d4e-2a106546ccb7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 303.76517ms + duration: 223.587558ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 69c51b36-4fab-0073-812e-0bc11e511a1d + - ace37ca4-fedf-e466-7095-cedc01cbca02 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:34:24 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9d8d0ab5-9616-4240-61c1-23a82d52c853 + - a42524e2-5eb2-4596-777c-39e03c5c3392 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 420.119999ms + duration: 190.542451ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 35225fbd-e8c4-0e33-9634-7eb0b7cc3482 + - 4e292a04-5bf1-f446-eae7-d0d076ca8bc3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -231,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:34:24 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3b01ad10-07d4-4868-4ec3-4b57d03c4f82 + - 6c068ff0-84e3-4944-469c-45082b0077a8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 288.475606ms + duration: 225.189712ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fa95436f-14e9-94cb-1879-fe39d2375855 + - 02aaa3c2-e0bb-245f-7049-57c90969c51c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f587ea17-b233-4bb6-6ee0-abc92ac148d2 + - 80bb6fd2-0469-4654-5126-83f184789aff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 359.293162ms + duration: 332.630504ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3f15863c-312b-b166-557e-cd1c39cfdd5c + - acacc14a-5f13-e7c1-c835-1c939cebf104 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -359,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:34:25 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9077f00a-ed22-4f41-782e-237acfb18c58 + - 63cb1da3-8987-4d1d-6ca9-790a6537cc44 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 239.657043ms + duration: 362.36287ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 653a6190-f592-dc25-e09a-94b28eee518d + - ce9d8667-18b2-90dd-5a2d-e3cf7c3fe90a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bac95a1f-485b-4b49-7fa4-9bc2a14dd52e + - 80c51ffb-c9dd-40eb-6700-59e8ffe31ac6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 319.561361ms + duration: 514.846394ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - de8c905e-922b-10c5-6ecc-f65183c0103f + - d34a9702-d7f6-03d6-4236-07981dc343ed + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -487,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 12110952-aa5b-4e91-5459-beafe94f8c72 + - cd8d459b-4240-4041-4ea8-4e93104541ef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 256.679089ms + duration: 377.004212ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8e99ec1e-148f-e9ea-566b-7525f67297d8 + - aed89880-2a3d-409d-4cee-29bc88099f09 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - be8050a2-c0f8-4249-4e8b-4e2502646384 + - fc1b015d-08fe-4be9-7e96-0715f3a2250f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 345.569637ms + duration: 175.451779ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 06cf35d7-1fb7-abf1-e7d3-abcbef5ea0bb + - 5d53de1b-2a98-f510-e401-de3261dd05bc + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -615,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - cb0b0fa7-0d1a-4425-4f68-019cc2a7d86e + - 675e52f4-c147-47b8-7384-8b8b72a66a08 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 224.499749ms + duration: 227.719521ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 30c80021-f06f-2d8b-d5e7-e03dc0c553ba + - 664e6142-b0f2-6a6b-cb40-9841ae6d4b3a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 521f1498-a29e-46ad-5523-3b8186a3be77 + - 70491711-f578-4d9a-514f-2169f1e7235f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.702718ms + duration: 261.382891ms diff --git a/internal/provider/fixtures/datasource_directory_roles.not_security_enabled.yaml b/internal/provider/fixtures/datasource_directory_roles.not_security_enabled.yaml index 3b40212e..61b1b7fb 100644 --- a/internal/provider/fixtures/datasource_directory_roles.not_security_enabled.yaml +++ b/internal/provider/fixtures/datasource_directory_roles.not_security_enabled.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e666fc33-5fe5-553d-5ace-aac0bf2fdd05 + - 2c12e770-c93e-1927-d5ea-6db5b37b1c01 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9b21a562-b86b-4431-531d-59954c43dc41 + - 9a5fc759-1363-486b-4e77-a2dcc93bc0cb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 347.685411ms + duration: 270.907635ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 47fd55a0-cef0-d225-8db2-4af1a03c4080 + - ff728d97-a481-8021-a167-ec1eb51f17ff + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Pragma: @@ -114,6 +120,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Server-Message: @@ -121,9 +129,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 73e7b103-4c33-497f-69a3-f360bc172ce4 + - 3a5945eb-3ad7-4e94-6261-c22ff2602199 X-Xss-Protection: - "0" status: 400 Bad Request code: 400 - duration: 159.964335ms + duration: 355.466584ms diff --git a/internal/provider/fixtures/datasource_directory_roles.yaml b/internal/provider/fixtures/datasource_directory_roles.yaml index 89c875c7..2dea5bf8 100644 --- a/internal/provider/fixtures/datasource_directory_roles.yaml +++ b/internal/provider/fixtures/datasource_directory_roles.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9c9a1ec6-cd3b-3a56-6b3b-02b1f0910c23 + - d41ba474-bbca-509e-a936-85c29baf418d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:50 GMT + - Tue, 01 Aug 2023 07:33:32 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ac3087ee-4933-42c5-6555-2de1c7b19ff0 + - 4cbb44e5-d1ae-4c34-79d9-1c6a99beea24 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 901.325409ms + duration: 338.18308ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b192c24-db3f-acec-945c-6a69aaa70691 + - cfaed060-b61f-ceda-ab28-9d9f6edcea59 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:33:32 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - de9e86d4-189d-4448-6269-bc20a340d81b + - 0d55e9d0-b415-4f9f-6bef-9590329b3fa0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 475.609465ms + duration: 348.546174ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a2858a81-9ef3-baa2-cad3-c560264aad77 + - 4e7f3da1-ea5b-76d8-b36a-dccc22a4f11f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:33 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f1eaa5a3-f76f-4a8a-5f35-02dd83a22d38 + - c02247e5-d1eb-4ff3-5a55-8f6b58774f8e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 372.846779ms + duration: 343.747251ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5c5c57fe-c01b-874b-1f33-575531e8234f + - c3cc0b9c-3abb-6219-bde9-066a8125c7bf + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -231,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:54 GMT + - Tue, 01 Aug 2023 07:33:33 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - c5f8d3e2-18b4-47a4-6c6b-bec689498fe6 + - 693841f4-94cf-499e-7b1e-c7a9ad74b704 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.202466ms + duration: 541.857587ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b6ad8a1a-b6d2-c366-9494-5ccefab6b6d4 + - 1014a06e-ffa0-e532-b14d-33bdb4656420 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fdee175b-b304-4846-55f4-222185d45df0 + - 74f26d3c-b0d5-4c69-6b68-42ac21b215fe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 342.746622ms + duration: 195.148708ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f12263e-c5ac-5e19-d3ef-ce72674c650e + - 7f1f7f32-3f9a-ad35-8420-efb4d8979ae7 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -359,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2e6e3796-86e1-40ea-584a-e342a328d833 + - 69709cfa-aaf2-4d92-7595-369ab3e6a4ec X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.720674ms + duration: 395.147237ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ecb8a326-5d5c-e2d0-008b-f37c1a6a803f + - f6424130-d344-a05c-f941-e38ffffed6c3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 346b7bc0-4c83-4729-72b9-e31401d0b457 + - 2324a17f-9203-40a6-488a-ba1e8cf10503 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.780525ms + duration: 341.554176ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c8f5acff-3d09-7278-d2f6-99611d3ff1b4 + - f6fa6f85-63a4-72d0-1c70-b1311d07f2aa + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -487,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 754fdd03-5d4d-4947-7023-4f720188a4fe + - d62ea9c1-3d9f-4842-4a79-8507e5d81ba7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 380.907996ms + duration: 359.847573ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 40d577c7-9eaf-5b8d-f0fb-436188f17e8d + - f2f287b5-f529-3b9c-7f35-95edb13b708f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 75a5f1fc-5470-4712-797f-2fd885aed08b + - e94e72b7-b80e-43bf-5f98-f5dc58a3e4a8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 319.764475ms + duration: 249.60748ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cc431d43-8ac5-bd53-1b8c-0b33dd76e0c3 + - 5a58bd44-fd01-2f61-556a-a2753bdac268 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -615,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:33:36 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 328d2a4f-59cb-484e-67fc-c140e88f85d6 + - eaeb3ff5-13e3-4860-4fb8-7ab807048fa5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 352.826092ms + duration: 377.128519ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8709f625-d120-3314-e5c2-624d9416356e + - 27f49666-82f9-d23d-6568-44757041a593 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:33:36 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f0a85a1a-a9a2-4977-5c10-e29e0d19bd4a + - 6f5d31cb-1cb7-4b83-5048-488220bdafdf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.781174ms + duration: 264.910248ms diff --git a/internal/provider/fixtures/datasource_directory_user.custom_idp.yaml b/internal/provider/fixtures/datasource_directory_user.custom_idp.yaml index 12260287..c9040281 100644 --- a/internal/provider/fixtures/datasource_directory_user.custom_idp.yaml +++ b/internal/provider/fixtures/datasource_directory_user.custom_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 03ab3fe3-f6e6-f4ef-43a9-eda07ee7e744 + - e885f3b1-cb25-dfad-83a6-c419f797cd37 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:02 GMT + - Tue, 01 Aug 2023 11:43:45 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a31236b1-7771-4183-67c9-8c18263a4f7d + - d8a8f97b-122c-4fef-726d-dc6f0dd11883 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.581396ms + duration: 391.728836ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e999526d-3120-d981-bfa2-e10ff7e9f68d + - 9af1a132-b29a-be3d-44ed-5edf0fd58b89 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"2b5382f4-1922-4803-8dcb-5babe097b12b","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"e7528a76-f725-4f0f-bf12-d8c30fd77e87","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:03 GMT + - Tue, 01 Aug 2023 11:43:45 GMT Expires: - "0" Pragma: @@ -131,33 +131,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e1dcabeb-ff8f-426d-49b2-146da6a746a8 + - 8e47ff02-6b4b-4626-4c2d-c81f178dd525 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 456.285848ms + duration: 322.281516ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f816bf52-bbd0-b805-c9e2-9b67d16ec07c + - 41351992-16c0-9343-6cb5-83dd265e51f1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -168,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:04 GMT + - Tue, 01 Aug 2023 11:43:46 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a15049e0-71b5-4340-6257-cd2db30432aa + - 0b413de2-b029-4fea-67b0-843742235273 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 555.450657ms + duration: 211.479115ms - id: 3 request: proto: HTTP/1.1 @@ -217,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d54c5482-2199-46c0-900e-822556f0eb4b + - 69208541-8979-2ea8-5c20-1eea802c2639 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -238,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"2b5382f4-1922-4803-8dcb-5babe097b12b","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"e7528a76-f725-4f0f-bf12-d8c30fd77e87","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:05 GMT + - Tue, 01 Aug 2023 11:43:46 GMT Expires: - "0" Pragma: @@ -267,33 +267,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6079394c-5c1f-4f62-62cf-360a4573fd38 + - ee7bf1ce-cd8f-468d-41b7-c57ed51ce040 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 468.470378ms + duration: 322.201332ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 255c39bc-a31f-9b19-3b3d-42555abb111d + - 9577d396-6d6a-39c9-2b94-0ef5ded7067a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -304,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:06 GMT + - Tue, 01 Aug 2023 11:43:47 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 023b203e-7617-406b-5c1d-a9828b5a841a + - ca548647-1e0e-463c-755b-092493004086 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 459.884493ms + duration: 303.314497ms - id: 5 request: proto: HTTP/1.1 @@ -353,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fbc81cd2-3ac7-31b3-af27-c4817084b127 + - efc3c8ab-8a88-c718-79db-d70b2d2560ff X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"2b5382f4-1922-4803-8dcb-5babe097b12b","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"e7528a76-f725-4f0f-bf12-d8c30fd77e87","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:07 GMT + - Tue, 01 Aug 2023 11:43:47 GMT Expires: - "0" Pragma: @@ -403,33 +403,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6844711c-78cd-42d8-4dff-c7e2b518c58d + - 03356e82-b842-40aa-5fa0-69d4c9421b2d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.269502ms + duration: 262.866505ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fa583559-150b-79da-d3ea-b4a027f17f9c + - 1000f929-bbe5-9c03-fe67-9da4c46a90b8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -440,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:08 GMT + - Tue, 01 Aug 2023 11:43:47 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d498b69c-2ffa-4f83-6388-f94450e4780f + - 1c84e88e-c67e-41c1-71f1-98fecc14ddf2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.387172ms + duration: 316.86544ms - id: 7 request: proto: HTTP/1.1 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b16de49b-6cf5-0095-0ebf-85b7729dc0ab + - cad11b27-0da8-c356-3d3f-6fcc31f20427 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -510,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"2b5382f4-1922-4803-8dcb-5babe097b12b","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"e7528a76-f725-4f0f-bf12-d8c30fd77e87","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:09 GMT + - Tue, 01 Aug 2023 11:43:48 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0399089c-5410-4638-41d2-f28a07f2460f + - ad3210cf-582d-4426-6a52-502e1838dfd7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 374.741047ms + duration: 318.263723ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f00b865e-8674-25bb-7165-49828a9d32e6 + - c24105c6-1a33-9769-1909-0c392f9b8b80 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:10 GMT + - Tue, 01 Aug 2023 11:43:48 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b13096f7-bc52-4818-5342-0a8f97399e8c + - a01021c2-fe59-4bb0-6915-035291b6fbcb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 422.222134ms + duration: 208.890693ms - id: 9 request: proto: HTTP/1.1 @@ -625,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2b0bed56-b5dd-3d39-6dc0-9b0070b80fea + - 25e73166-f20e-6ca9-e7e7-a4e4d75d7322 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"2b5382f4-1922-4803-8dcb-5babe097b12b","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"e7528a76-f725-4f0f-bf12-d8c30fd77e87","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:10 GMT + - Tue, 01 Aug 2023 11:43:48 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d682a3f-df59-49e3-4e06-85600ebaf74b + - dfb5fdca-55d3-4d2a-606a-ab2c0541800b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.943509ms + duration: 252.246792ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a4982105-8764-b04f-6fdd-8f01679548a6 + - 1f9af307-ecde-bf0d-01d8-a89834bc173f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:11 GMT + - Tue, 01 Aug 2023 11:43:49 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 26727f29-cbfc-4876-5601-a949810c2a2c + - 988d28bf-0d2e-45af-5719-ae2ee43d41bd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.396123ms + duration: 258.965549ms diff --git a/internal/provider/fixtures/datasource_directory_user.default_idp.yaml b/internal/provider/fixtures/datasource_directory_user.default_idp.yaml index a31ac42e..cfab9515 100644 --- a/internal/provider/fixtures/datasource_directory_user.default_idp.yaml +++ b/internal/provider/fixtures/datasource_directory_user.default_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8507e7c3-5ccd-b9b9-6fc4-82934d326a3e + - c209ff2f-70b5-4f4e-d978-415a7929a3ac X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:50 GMT + - Tue, 01 Aug 2023 11:43:40 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d4d0544-db0b-4cd1-5d0a-18527ca4976d + - de051ddb-4fc7-4d60-51a5-6bfa83b58b97 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.130132274s + duration: 464.236741ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e583010d-734c-b447-2b6b-71d05d6a3414 + - 8335d869-3eaa-c49d-4ebc-fae14c4268ff X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":6,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:52 GMT + - Tue, 01 Aug 2023 11:43:41 GMT Expires: - "0" Pragma: @@ -131,33 +131,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - abd5c9a5-0c2b-4b78-6f98-016b06a6d73a + - d0969d4b-861e-4f6c-7ecf-bae8ac33a3cb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 423.204036ms + duration: 354.836766ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cb8de8b7-7b30-1002-5e34-ec948b36be06 + - 5ac49704-99dd-db58-34b1-a39ece0fc2be X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -168,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:53 GMT + - Tue, 01 Aug 2023 11:43:41 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 524aa065-00c5-438c-4c36-bff9cfc7b46f + - 2881f5f5-a919-4e52-56f2-22b02018f4cb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.105974ms + duration: 400.318428ms - id: 3 request: proto: HTTP/1.1 @@ -217,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4844883f-2c41-316e-77ff-2a97e9a9887d + - 9a7a8964-d377-68ea-5b76-40446a15232e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -238,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":6,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:54 GMT + - Tue, 01 Aug 2023 11:43:41 GMT Expires: - "0" Pragma: @@ -267,33 +267,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 11e3d7c4-9569-41ef-7576-ca396960939f + - 89f0e41f-3c71-46ad-6c9a-1be41c526083 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 359.656806ms + duration: 256.866245ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2322b900-6b39-54ab-e07f-d157e6bb79eb + - bd7f73b3-247e-11fd-5785-bcc647185aaf X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -304,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:55 GMT + - Tue, 01 Aug 2023 11:43:42 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5ac4e1ac-9095-4bdc-5a2e-ca207c859b69 + - 5c53eae5-c9c8-4ac0-6ff1-8053b30776eb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 596.748368ms + duration: 272.938138ms - id: 5 request: proto: HTTP/1.1 @@ -353,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5f68924e-5731-5b74-ae1e-385f48a21f8f + - de3c8bfd-a999-ecd3-07fd-529a74d8bea0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":6,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:56 GMT + - Tue, 01 Aug 2023 11:43:42 GMT Expires: - "0" Pragma: @@ -403,33 +403,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0b1d8e15-9945-42b2-55e1-1a1af379ca00 + - 98287f4f-b7d1-480a-47da-e04674ef2f69 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 423.067387ms + duration: 348.261624ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 88931dd3-7f3b-3e44-4da6-0b8875598311 + - 2c251670-021e-e7f5-c35b-21571b06c49e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -440,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:57 GMT + - Tue, 01 Aug 2023 11:43:43 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d330234c-8b83-4421-652f-58e3349a1c5b + - 6b01ec9a-5549-4b5a-737e-cf2e5dc2662b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 488.16462ms + duration: 226.516291ms - id: 7 request: proto: HTTP/1.1 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 574285cf-165a-24de-3c1b-67874d92e33d + - 0a52afc9-d343-f077-4112-ed0b1842de8f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -510,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":6,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:58 GMT + - Tue, 01 Aug 2023 11:43:43 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5aa58a9f-b9fc-4bec-74cc-aaacfcba3bf0 + - fea4ec2b-2e55-4817-7464-87cd06bac38a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 429.894282ms + duration: 354.335192ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f186e459-4837-f3fc-9d1d-ef0a71ab80a8 + - 32c11687-ffdc-c1fa-28f8-872ab915d237 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:48:59 GMT + - Tue, 01 Aug 2023 11:43:43 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1520725f-6b9d-4f57-5398-e45f8ee8209a + - 7b88fce8-ab90-4552-4c24-5f3aabaa971d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.666916ms + duration: 288.311885ms - id: 9 request: proto: HTTP/1.1 @@ -625,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c2630f00-ba2a-7153-e088-7b00c94734ac + - 7b7e4527-6397-09da-b2b9-14076caca005 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":6,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:00 GMT + - Tue, 01 Aug 2023 11:43:44 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d56672c6-e6a0-491d-7fcc-cac46c1c84f3 + - b30cb620-845b-4da5-7b55-bee0c39ff408 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 440.800099ms + duration: 268.642626ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5634599b-147a-db98-478c-7884bec08c5e + - 21ff7a14-8f9a-6a2a-d65e-75721b3726b8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 08:49:01 GMT + - Tue, 01 Aug 2023 11:43:44 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0385469d-d31c-4ac6-51d0-7299c97bc5d6 + - 60237d40-0349-4701-524a-1456abc79589 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 425.722758ms + duration: 283.449709ms diff --git a/internal/provider/fixtures/datasource_directory_users.custom_idp.yaml b/internal/provider/fixtures/datasource_directory_users.custom_idp.yaml index faf974c7..37bfb861 100644 --- a/internal/provider/fixtures/datasource_directory_users.custom_idp.yaml +++ b/internal/provider/fixtures/datasource_directory_users.custom_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 238e9ce5-e8d0-3a2a-0e0d-522f8cadce8b + - 0e877834-54cd-262f-aaf5-97cb9b3e46e8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:26 GMT + - Tue, 01 Aug 2023 13:21:07 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7e20e08e-c6df-4548-6904-60b1e19f57a7 + - b92b234e-63ba-4a41-5366-a1bf2728cc41 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 695.147016ms + duration: 300.313869ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 480fb870-9e8d-7bf8-35b1-4556f5cd4e9c + - f868929e-59c7-b193-65f7-05fff0d47286 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","jenny.doe@test.com","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:27 GMT + - Tue, 01 Aug 2023 13:21:07 GMT Expires: - "0" Pragma: @@ -124,38 +124,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e20225c9-f313-40c2-4a34-f1f184eb573a + - 27d4264b-4452-4c20-790b-4d1ad46e1353 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 530.361017ms + duration: 310.619619ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 03c6ce46-4e29-d46c-df9b-4686dc4ad442 + - c4687e73-91f6-198a-36c6-5e46e6aedcc6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -166,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:29 GMT + - Tue, 01 Aug 2023 13:21:08 GMT Expires: - "0" Pragma: @@ -191,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 199a0c09-7354-43ea-72fc-3e3ada69cc2a + - a790df10-8514-4202-4541-66b731b16721 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 474.892192ms + duration: 258.537655ms - id: 3 request: proto: HTTP/1.1 @@ -215,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1c6ca1ef-cad6-f37a-99a3-bdaf11babea5 + - c1d13d74-6298-e21e-2cfe-cf9647dc4606 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -236,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","jenny.doe@test.com","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:30 GMT + - Tue, 01 Aug 2023 13:21:08 GMT Expires: - "0" Pragma: @@ -258,38 +260,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4904c678-99d3-4830-4a7f-bf344bfec3ec + - fa01e11f-e18f-4772-6d35-fbef0be54579 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 460.372972ms + duration: 308.351239ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae003458-8c93-bca0-3d50-cc480165c040 + - ecf78f83-c1dd-e4ea-42a2-ae1f1e590347 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -300,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:31 GMT + - Tue, 01 Aug 2023 13:21:08 GMT Expires: - "0" Pragma: @@ -325,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ea246409-3a3f-42cf-4c31-ee9fa64f38f2 + - b78d6dce-7225-43cc-57fa-95921b4dac0f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 650.510484ms + duration: 236.392185ms - id: 5 request: proto: HTTP/1.1 @@ -349,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93a66a32-45b5-148e-14d5-14a549d728c1 + - 39ed5fb5-170c-048d-21f9-9020586dab7e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -370,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","jenny.doe@test.com","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:32 GMT + - Tue, 01 Aug 2023 13:21:09 GMT Expires: - "0" Pragma: @@ -392,38 +396,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - da365970-4310-4338-6596-faccaeb87380 + - 76d85f93-1273-4ffb-5e2c-0e123d57118e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 378.265039ms + duration: 322.544198ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fbec8ff6-2eb7-5f12-f727-a15d087de62a + - 25b4540d-5e1b-5fbb-aa0c-9e3f8fa0d496 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:33 GMT + - Tue, 01 Aug 2023 13:21:09 GMT Expires: - "0" Pragma: @@ -459,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a92b1d79-8a8c-4fbd-7ff1-6493f3a7f306 + - e75854a0-4c35-494a-672f-035a7c60338c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 505.291039ms + duration: 252.054853ms - id: 7 request: proto: HTTP/1.1 @@ -483,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 527a0674-1368-bef9-3b1e-d720e2fd0cb3 + - c1b7f69c-07cc-3bb9-7a50-5e3e17b1f688 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -504,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","jenny.doe@test.com","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:34 GMT + - Tue, 01 Aug 2023 13:21:09 GMT Expires: - "0" Pragma: @@ -526,38 +532,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 72e38b79-6047-4e98-49df-08ebb7d18ea4 + - a9e391f8-f5dd-4d2a-5dfc-9083c6c94180 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 413.367807ms + duration: 345.818387ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dbb5d61b-8ab1-0c9f-62f2-fe97d3a85a6c + - 755e002d-fda2-6553-9689-0ed8da58d62d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -568,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:35 GMT + - Tue, 01 Aug 2023 13:21:10 GMT Expires: - "0" Pragma: @@ -593,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 960ef683-bf45-4588-64c3-7587c9069b07 + - 4ef7eaf2-5d3b-41e4-6baf-8ccd2e29dde7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 499.806969ms + duration: 292.525532ms - id: 9 request: proto: HTTP/1.1 @@ -617,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93a4b65e-7b5d-8e3a-a3ea-059e7709a229 + - 6e64bde2-be26-6694-26d1-a49ac8e9e8c3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -638,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","jenny.doe@test.com","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:36 GMT + - Tue, 01 Aug 2023 13:21:10 GMT Expires: - "0" Pragma: @@ -660,38 +668,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - c4042169-3acd-4d85-4df0-66feab1ad3ee + - a11a3aa8-6e02-4bb1-5f1f-ca72a04fc13e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 418.384026ms + duration: 287.850527ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 46b0c193-ab41-bf46-51da-7018e6265746 + - 1783bc33-16d6-3204-b584-61d02b8c943e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -702,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:43:37 GMT + - Tue, 01 Aug 2023 13:21:11 GMT Expires: - "0" Pragma: @@ -727,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb4fbc66-5deb-48e2-4e4a-48e7d467a649 + - 2393afa6-7076-4926-6e13-6caf126cff80 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 432.966572ms + duration: 316.315322ms diff --git a/internal/provider/fixtures/datasource_directory_users.default_idp.yaml b/internal/provider/fixtures/datasource_directory_users.default_idp.yaml index fb22df72..821b2409 100644 --- a/internal/provider/fixtures/datasource_directory_users.default_idp.yaml +++ b/internal/provider/fixtures/datasource_directory_users.default_idp.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae58280a-df2d-3a79-e0f7-aa1a5a849ab9 + - c6e27805-5854-0a99-51ad-51937e12abdc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:41:59 GMT + - Tue, 01 Aug 2023 13:21:02 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0c3ce6b9-9326-4301-4d25-0629dd43f383 + - 23d1123c-0928-45de-7611-485f806aa8d7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.022478246s + duration: 661.500161ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - feb47156-51a2-0086-e808-39e34c1f5fc1 + - ac25649d-503e-622b-07d2-1e770a89b2f2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -98,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jane.doe@test.com","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:01 GMT + - Tue, 01 Aug 2023 13:21:03 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 70c35913-b440-4716-6c90-1648132382c2 + - a9739c40-6550-446a-4b0e-ede720aebb3f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 446.37242ms + duration: 416.943421ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cbb6afd3-d727-c69a-28df-4dd45ba6192b + - 28353e5c-f178-820b-ab3c-50aab2213bf5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:02 GMT + - Tue, 01 Aug 2023 13:21:03 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 01714658-ce6d-43a3-4421-908484641a98 + - b05c05ff-0ede-43c2-5a61-1a756a11a3e8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 458.700022ms + duration: 311.082822ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 08cd14a8-3773-5b6f-29b0-6c53c8fa70cb + - 1ad5eebb-00a2-fc8e-dddd-a88a35e59074 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -228,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jane.doe@test.com","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:03 GMT + - Tue, 01 Aug 2023 13:21:03 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 072b52c3-96ae-49bd-6e48-684a35925d63 + - 686e7eb8-b469-4220-4134-9bbaec28967e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.468501ms + duration: 449.904879ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 63ab7e33-f45c-733b-957c-7b446758da1e + - 9a96478c-dff5-7d8b-cb8f-1e571ddbbfbf X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:04 GMT + - Tue, 01 Aug 2023 13:21:04 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9703a85b-e72b-4587-540a-4c0f283b8225 + - 6c43efb8-ec5a-4ae5-7167-fca356909962 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 508.755839ms + duration: 262.273151ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 197bd3e7-e3d2-dab4-23d0-975ea9debc11 + - 3bb799d9-bf4f-e0a9-1059-0c3966c63f6b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -358,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jane.doe@test.com","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:05 GMT + - Tue, 01 Aug 2023 13:21:04 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 665cceb6-398e-42ab-453a-80ced9bb033d + - 11024974-5692-4642-765f-5c15a013cabc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 453.118949ms + duration: 295.043739ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cdadbaf7-7a37-dffa-1c3a-9ee61f5f386d + - 6413c47f-5511-ecf7-773f-24bddb196cbb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:06 GMT + - Tue, 01 Aug 2023 13:21:05 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1ba4a27d-de93-448a-581b-67fa38d28bf9 + - a9237a26-f321-49a4-669d-9355db5e789b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 460.070888ms + duration: 286.150309ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f54001a4-fcd6-1b78-5e6f-54ef8f57de1f + - adce75b5-5f61-c65a-cf6c-e1f2eec7dbdb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -488,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jane.doe@test.com","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:07 GMT + - Tue, 01 Aug 2023 13:21:05 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a5f5cf21-5369-42fc-4896-f67cda4c630f + - 0fee307d-c2aa-4b61-4b12-1058eee1b730 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.591609ms + duration: 289.390678ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 82921bbb-d88b-ac34-4ab9-cbd63f8e8847 + - 0d864c2e-95af-64f7-f624-523ac0518038 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:08 GMT + - Tue, 01 Aug 2023 13:21:05 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 86a0a944-1e65-42b5-6e24-5b9b8b3330b0 + - a30efeb0-003f-4fde-7653-8cfdc729d387 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 443.311952ms + duration: 250.077122ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0e046310-2a5a-7dde-f8d8-dae881fa932d + - 91f82f25-70d1-d4f8-b6e8-6f7f14cffede X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -618,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jane.doe@test.com","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:09 GMT + - Tue, 01 Aug 2023 13:21:06 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 84c9eeba-6cd4-4b94-4f7d-3d46b9d12fa6 + - 94cd0a81-005a-4bcf-4ca2-d69d69e6e4e5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 438.21292ms + duration: 423.528647ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d404f495-dbe2-3902-a1ff-1f51a4e73951 + - 0f5b27f8-f83f-5287-2403-621991b7988f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 12:42:10 GMT + - Tue, 01 Aug 2023 13:21:06 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8b943396-53dc-41e3-403c-4bca8c91bf20 + - a8d848b6-f7c4-4a3e-55a8-adb00fe6c9b0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 505.061664ms + duration: 235.004023ms diff --git a/internal/provider/fixtures/datasource_directory_users.non_existing_idp.yaml b/internal/provider/fixtures/datasource_directory_users.non_existing_idp.yaml index 7380ca73..a0eeed45 100644 --- a/internal/provider/fixtures/datasource_directory_users.non_existing_idp.yaml +++ b/internal/provider/fixtures/datasource_directory_users.non_existing_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 55499ef8-d702-331d-5070-96a6191987ac + - c10f4bad-d8f5-4e00-bc20-69e3fc96bc50 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:13:25 GMT + - Tue, 01 Aug 2023 13:21:11 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5b391618-243c-4b96-6a8f-f96b7c10c6f7 + - 9206b517-4a36-4b57-6789-ddb603feac5d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 759.7271ms + duration: 202.977322ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 921d6ebb-acf0-4774-5ac9-5c6a76b06ef9 + - f1cf1338-c69f-4eda-79c9-ca18b7e17b3b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:13:26 GMT + - Tue, 01 Aug 2023 13:21:12 GMT Expires: - "0" Pragma: @@ -131,9 +131,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0e706860-07c7-45a5-49b2-61ee135de91a + - 0d1333d4-5801-40fb-570a-e1fcdff7a166 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 444.1048ms + duration: 366.40882ms diff --git a/internal/provider/fixtures/datasource_globalaccount.yaml b/internal/provider/fixtures/datasource_globalaccount.yaml index f8abdcb7..f6b9f05f 100644 --- a/internal/provider/fixtures/datasource_globalaccount.yaml +++ b/internal/provider/fixtures/datasource_globalaccount.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6d8ebb60-a4a5-02f7-ee57-23b30b835b68 + - 0b5b5d36-f713-ec23-4393-e7f6b9d27645 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:48 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ebcbbbb9-50dc-4221-6734-9dafaa727ac0 + - c217abb2-9cd2-4c25-47e1-329970bafe27 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 924.0477ms + duration: 277.491466ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d067b11d-4ad1-1e9a-d62d-5830d206f78b + - 1ced139f-4c40-b1ef-cd59-049719f22ddc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"May 11, 2023, 9:25:51 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' + body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"Jul 31, 2023, 8:40:16 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:49 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -131,33 +131,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6be27a57-6106-4bad-7b5b-3bcc8f5c5c63 + - 89047442-403a-44dd-4e4d-182d7e4ceca1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 447.326ms + duration: 182.490157ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b1c24dc7-9c18-df8d-f625-0806753cf10e + - 8a2a1a91-ad47-eca5-22e0-3514a2191b2e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -168,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:50 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d689fec-3c8d-404e-5def-63f86612b977 + - 38e6ca03-fe52-4a2f-4d6e-20caefacc3ff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 564.2197ms + duration: 390.433399ms - id: 3 request: proto: HTTP/1.1 @@ -217,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cab2f94-cd54-8940-bbe2-600b79f28cc9 + - 58ee8afc-1a42-2a86-984b-2107346faab8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -238,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"May 11, 2023, 9:25:51 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' + body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"Jul 31, 2023, 8:40:16 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:51 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -267,33 +267,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f27691af-8d19-4399-498e-e51032e96851 + - 572b52ae-a92e-4448-72d1-951e49b0148f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 315.1052ms + duration: 190.996492ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a1a4e40a-a442-de3b-3f32-0c03a293f11b + - 5237d161-b198-e6d7-d746-7f93b20a288a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -304,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:52 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0f5e7abe-0eeb-4a14-60ef-a8f2d134f05e + - 8f6076ab-c8c2-40a0-4684-22bc8f00f293 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 432.4317ms + duration: 205.735632ms - id: 5 request: proto: HTTP/1.1 @@ -353,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0bb2f066-7920-01e1-d365-1810dc6d8d57 + - 7fc41767-44e9-5bb1-b977-3bc40a6fe3c4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"May 11, 2023, 9:25:51 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' + body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"Jul 31, 2023, 8:40:16 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:53 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -403,33 +403,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e89a3f33-2b60-4eb2-51b7-5f37cdbea291 + - d72b20b5-accc-40c1-4103-173f11977f7a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 261.4619ms + duration: 171.767885ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 35e7facc-4be6-64d8-2894-2ad02d7e156c + - 3c8d3a59-af62-eeb0-976c-fce8dc7b6940 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -440,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:54 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d0941f52-6560-45bc-6b52-dc1601678e7d + - 5bf59908-9b97-4184-67d4-b2ba81abddd7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 545.2716ms + duration: 298.280181ms - id: 7 request: proto: HTTP/1.1 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2aef5c53-478e-0ee0-34cf-5dff72f11e71 + - 5e2b5f47-1cc2-c8ba-9206-2262360a2ac6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -510,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"May 11, 2023, 9:25:51 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' + body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"Jul 31, 2023, 8:40:16 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:55 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 506fd6ee-09ef-4802-62df-e422155e8d04 + - b2589d9e-14e8-4a86-7c4e-5c2d8309a16f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 344.968ms + duration: 312.045798ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1df70e02-5983-b531-eff8-46d0b8e6683d + - c6e78c2a-d6de-c6a0-35a5-9555b643c09b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:56 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0a946ff-4834-43fe-7a48-3249ba4baa13 + - 9ff2da30-086b-4e6c-5085-e0c4efad8f1c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 422.3745ms + duration: 277.973844ms - id: 9 request: proto: HTTP/1.1 @@ -625,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c1669b42-0b89-f4f1-f08d-ce971e99904d + - 817de81c-37f0-b584-8971-cd1a926e3156 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"May 11, 2023, 9:25:51 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' + body: '{"commercialModel":"Subscription","consumptionBased":true,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101010541","costObjectType":"COST_CENTER","costObjectId":"101010541","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":"Jul 31, 2023, 8:40:16 AM","entityState":"OK","stateMessage":"Global account created.","subdomain":"terraformintcanary","contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:56 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a5b40570-af50-447f-5c8b-4e3f57f910ad + - 1f99f74e-b4f5-4bda-6a9e-9b58fd3a3fb4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 211.1313ms + duration: 264.646853ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 87201287-167a-85bf-f401-57bbc83f2baf + - cafcd2d9-617e-7c38-9b3b-74da3f43a996 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 14 Jun 2023 10:37:57 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8310dabe-2a3f-4f98-7a5c-a134d2a8ea09 + - 7ec52aba-898e-44fe-768f-da70c4a096d9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 477.0905ms + duration: 167.935988ms diff --git a/internal/provider/fixtures/datasource_globalaccount_entitlements.yaml b/internal/provider/fixtures/datasource_globalaccount_entitlements.yaml index c2af986c..20bb6269 100644 --- a/internal/provider/fixtures/datasource_globalaccount_entitlements.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_entitlements.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4b258ad4-7a00-fcd5-5bb9-5a2b5bfe5d7f + - a65b3ac1-ba71-11fe-475d-56cd192c8817 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:29 GMT + - Tue, 01 Aug 2023 09:06:21 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c299d594-4159-4389-6a64-b190c06f2cfd + - b22d3521-f5ef-4b5b-7b14-c81664321a71 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 992.972229ms + duration: 487.91286ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 978a9ef7-7374-a511-d5eb-5d9feef27f6c + - 9b81b005-b5c6-ea16-10e2-f917f9592772 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -96,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}}],"assignedServices":[{"name":"auditlog","displayName":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0,"parentAmount":1,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238492,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098912,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"alertnotificationservicecf","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":2,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364331,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":2.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"free","displayName":"free","uniqueIdentifier":"alert-notification-free","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ads-configui","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"ads-configui-default","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934195,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238347,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098559,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238246,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098377,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238287,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098459,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238480,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098853,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238517,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098939,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238323,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098534,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238552,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099017,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238233,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098352,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098731,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"free","displayName":"free","uniqueIdentifier":"internal-auditlogviewer-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360465,"modifiedDate":1688384364302,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238428,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098706,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238259,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098409,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238383,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098658,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"adsrestapi-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934179,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ibanservice","displayName":"IBAN Service","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"default","uniqueIdentifier":"ibanservice-default","category":"SERVICE","beta":true,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688730522279,"modifiedDate":1688730525247,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238360,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098606,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238300,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238219,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094776,"modifiedDate":1688384098326,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238271,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098435,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238505,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098886,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238529,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098964,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238540,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098989,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238417,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098754,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238441,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098780,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238371,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098632,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"ads","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"ads-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":4,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934211,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":4.0,"parentAmount":4.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238453,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098829,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238564,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099042,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"PortalApplication","displayName":"Cloud Portal Service","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"portalapplication-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364358,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238466,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098805,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238394,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098683,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238335,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098582,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"IRPA-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690462644655,"modifiedDate":1690462652062,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238311,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098510,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"auditlog","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:31 GMT + - Tue, 01 Aug 2023 09:06:22 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7e151ad6-8938-4ab1-66d8-a9cf40657ed2 + - f4223033-c800-414d-7521-6c4e313235b5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 918.93583ms + duration: 765.227856ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cbc6da24-ce4a-ff2a-db0d-7e625db7a2d2 + - e69cdb88-7101-128e-ad17-82fb512ccd79 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:33 GMT + - Tue, 01 Aug 2023 09:06:22 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bb81d0ef-3d36-4cb4-4d52-78e2673ae66a + - 63bf8194-6cdc-4465-5f5c-9171c91b7c21 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 464.467533ms + duration: 347.898082ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c42fa984-c31c-ed4d-e0a1-32e665807ad5 + - 7bf56c00-3029-c785-2ea1-add128105f1a + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -224,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}}],"assignedServices":[{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238394,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098683,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238259,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098409,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238383,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098658,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ibanservice","displayName":"IBAN Service","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"default","uniqueIdentifier":"ibanservice-default","category":"SERVICE","beta":true,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688730522279,"modifiedDate":1688730525247,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"free","displayName":"free","uniqueIdentifier":"internal-auditlogviewer-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360465,"modifiedDate":1688384364302,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238311,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098510,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238371,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098632,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"auditlog","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238417,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098754,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238323,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098534,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238552,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099017,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238271,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098435,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238505,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098886,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238529,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098964,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238540,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098989,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"IRPA-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690462644655,"modifiedDate":1690462652062,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238347,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098559,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"PortalApplication","displayName":"Cloud Portal Service","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"portalapplication-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364358,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238492,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098912,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238233,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098352,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098731,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238246,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098377,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238287,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098459,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238480,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098853,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238517,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098939,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238335,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098582,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238428,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098706,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"ads","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"ads-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":4,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934211,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":4.0,"parentAmount":4.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238219,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094776,"modifiedDate":1688384098326,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238300,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"ads-configui","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"ads-configui-default","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934195,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"alertnotificationservicecf","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":2,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364331,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":2.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"free","displayName":"free","uniqueIdentifier":"alert-notification-free","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238360,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098606,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238441,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098780,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"adsrestapi-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934179,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238453,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098829,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238564,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099042,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238466,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098805,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:34 GMT + - Tue, 01 Aug 2023 09:06:23 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 515906c0-27b6-482b-59bb-4466de7a4196 + - f50d66ed-79d9-4f37-49bb-f05711739eb4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 617.869842ms + duration: 729.489869ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 969d5d57-dfdf-f77b-6b7b-19bcba12695d + - 440eff9f-4f52-02cf-cf82-94c199881b33 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:36 GMT + - Tue, 01 Aug 2023 09:06:24 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a85c8458-09a1-43ea-7d6e-2904ea00b0c0 + - 9186b7d6-ac96-474c-5041-37a65855e848 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 510.958956ms + duration: 264.822ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1477d5f7-eaa7-cb54-95aa-10617bc538e3 + - 1daf5a86-6c7a-f120-5455-96eba20e44e6 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -352,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}}],"assignedServices":[{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238492,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098912,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"alertnotificationservicecf","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":2,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364331,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":2.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"free","displayName":"free","uniqueIdentifier":"alert-notification-free","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ads-configui","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"ads-configui-default","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934195,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238347,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098559,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238246,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098377,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238287,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098459,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238480,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098853,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238517,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098939,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238323,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098534,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238552,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099017,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238233,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098352,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098731,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"free","displayName":"free","uniqueIdentifier":"internal-auditlogviewer-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360465,"modifiedDate":1688384364302,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238428,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098706,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238259,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098409,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238383,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098658,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"adsrestapi-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934179,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ibanservice","displayName":"IBAN Service","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"default","uniqueIdentifier":"ibanservice-default","category":"SERVICE","beta":true,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688730522279,"modifiedDate":1688730525247,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238360,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098606,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238300,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238219,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094776,"modifiedDate":1688384098326,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238271,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098435,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238505,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098886,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238529,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098964,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238540,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098989,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238417,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098754,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238441,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098780,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238371,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098632,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"ads","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"ads-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":4,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934211,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":4.0,"parentAmount":4.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238453,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098829,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238564,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099042,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"PortalApplication","displayName":"Cloud Portal Service","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"portalapplication-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364358,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238466,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098805,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238394,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098683,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238335,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098582,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"IRPA-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690462644655,"modifiedDate":1690462652062,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238311,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098510,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"auditlog","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:37 GMT + - Tue, 01 Aug 2023 09:06:24 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - b230078a-b7bc-47db-5e20-3f2a82785759 + - 1dd01e10-2fa6-4f4b-4fc7-9038fbf03be2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 668.347279ms + duration: 737.174295ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cdb76f59-49d6-0075-aa84-ef5e6b5fb426 + - 83f14599-7ae8-cf5e-698f-0206978b5c87 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:38 GMT + - Tue, 01 Aug 2023 09:06:25 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2e7b6882-e442-431d-6bcf-2fa1c1dfac64 + - 839a17d4-91e2-457b-483a-628f00ebe546 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 488.297324ms + duration: 192.655655ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f4edd54b-6f0e-8e1c-dd9b-e3685ae68ff0 + - 423baece-d53c-2a28-3872-e079ed43b11e + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -480,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}}],"assignedServices":[{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog","displayName":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238428,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098706,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ibanservice","displayName":"IBAN Service","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"default","uniqueIdentifier":"ibanservice-default","category":"SERVICE","beta":true,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688730522279,"modifiedDate":1688730525247,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"IRPA-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690462644655,"modifiedDate":1690462652062,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ads-configui","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"ads-configui-default","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934195,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ads","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"ads-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":4,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934211,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":4.0,"parentAmount":4,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238347,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098559,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog","displayName":"auditlog","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238311,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098510,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"free","displayName":"free","uniqueIdentifier":"internal-auditlogviewer-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360465,"modifiedDate":1688384364302,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"alertnotificationservicecf","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":2,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364331,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":2,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"free","displayName":"free","uniqueIdentifier":"alert-notification-free","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238453,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098829,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238564,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099042,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"adsrestapi-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934179,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238233,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098352,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098731,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238394,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098683,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238441,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098780,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238360,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098606,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238300,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238335,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098582,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238417,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098754,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238371,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098632,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238219,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094776,"modifiedDate":1688384098326,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238246,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098377,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238287,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098459,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238480,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098853,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238517,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098939,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238492,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098912,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238323,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098534,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238552,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099017,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238271,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098435,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238505,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098886,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238529,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098964,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238540,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098989,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238259,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098409,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238383,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098658,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"PortalApplication","displayName":"Cloud Portal Service","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"portalapplication-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364358,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238466,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098805,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:39 GMT + - Tue, 01 Aug 2023 09:06:25 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 23322fde-20fd-4487-6de2-415b213d77bf + - 1347a23c-d291-4529-6301-02510b29428c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 632.959274ms + duration: 691.984088ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bc3b1097-b7fd-7800-b02e-1fb4a66475e5 + - 876c6931-5d10-d395-2c53-845de1f22c65 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:41 GMT + - Tue, 01 Aug 2023 09:06:26 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 29254398-b30f-46de-595a-289aea7b9dc5 + - e47fb1f5-16a4-4a1d-4a06-86d64c0aecb6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.021146ms + duration: 201.349154ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 342670be-5aeb-45d6-e884-62e09f5f48e7 + - a6988821-5d30-91b5-4e67-5e5158fc9ac4 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -608,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}}],"assignedServices":[{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238271,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098435,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238505,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098886,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238529,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098964,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238540,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098989,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238417,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098754,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238233,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098352,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098731,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238441,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098780,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238219,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094776,"modifiedDate":1688384098326,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238360,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098606,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238428,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098706,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238246,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098377,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238287,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098459,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238480,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098853,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238517,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098939,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238453,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098829,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238564,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099042,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238300,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238259,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098409,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238383,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098658,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ads-configui","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"ads-configui-default","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934195,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238323,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098534,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238552,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384099017,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238466,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098805,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"adsrestapi-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934179,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"PortalApplication","displayName":"Cloud Portal Service","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"portalapplication-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364358,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"free","displayName":"free","uniqueIdentifier":"internal-auditlogviewer-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360465,"modifiedDate":1688384364302,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"alert-notification","displayName":"Alert Notification","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"alertnotificationservicecf","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":2,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364331,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":2.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"alert-notification-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161723,"modifiedDate":1685541161723,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"free","displayName":"free","uniqueIdentifier":"alert-notification-free","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384360466,"modifiedDate":1688384364405,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238492,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098912,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"ibanservice","displayName":"IBAN Service","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"default","uniqueIdentifier":"ibanservice-default","category":"SERVICE","beta":true,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688730522279,"modifiedDate":1688730525247,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238394,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098683,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog","displayName":"auditlog","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","entityType":"DIRECTORY","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Global entitlements succeeded","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685541161730,"modifiedDate":1685541161730,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238335,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098582,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238371,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098632,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"IRPA-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690462644655,"modifiedDate":1690462652062,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238347,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098559,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"4188b3a6-9084-4883-a47d-4d2120d0ec0a","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690875233875,"modifiedDate":1690875238311,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1688384094777,"modifiedDate":1688384098510,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null},{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"ads","displayName":"Forms Service by Adobe","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"ads-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","entityType":"SUBACCOUNT","amount":4,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1690876930502,"modifiedDate":1690876934211,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":4.0,"parentAmount":4.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:42 GMT + - Tue, 01 Aug 2023 09:06:27 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 16a40783-2b29-4b81-6d8c-36891493be8b + - a2d590ec-4bcd-401f-6bd9-4e8adb990d58 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 567.35914ms + duration: 1.170830602s - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac0a8c88-35f2-ef51-5b6f-5579b5336c1b + - ec6cca08-a629-d6a0-c1af-544136456200 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:43 GMT + - Tue, 01 Aug 2023 09:06:28 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1eb9cfcc-304f-4f34-4221-cdbe692c37ac + - 4d51f35f-5841-4b72-60a0-0e27ac1c6969 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 444.392905ms + duration: 293.13233ms diff --git a/internal/provider/fixtures/datasource_globalaccount_resource_provider.yaml b/internal/provider/fixtures/datasource_globalaccount_resource_provider.yaml index 2e8299e5..3e7bdb86 100644 --- a/internal/provider/fixtures/datasource_globalaccount_resource_provider.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_resource_provider.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e17c379-8d1f-a63b-de70-a373fdfa2ca0 + - b4b41d3d-3269-3ec0-efcc-5a4f6a9af954 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -34,7 +34,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:55 GMT + - Tue, 01 Aug 2023 07:33:27 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 05c3fed1-13b4-426b-6341-b799b229f552 + - 4d679bdd-b14b-4fe2-6098-d95de962ef47 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 756.564162ms + duration: 183.203302ms - id: 1 request: proto: HTTP/1.1 @@ -83,9 +83,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed94c174-7092-ae21-c099-a8b07854d1ab + - ab7918d6-eaf8-5913-7268-192d238e7abc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:57 GMT + - Tue, 01 Aug 2023 07:33:28 GMT Expires: - "0" Pragma: @@ -131,12 +131,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 48a8215b-e7d7-4a20-473d-0f3348248c5c + - d53c9b7b-6933-418b-648e-17af7bfa6fb2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.432374514s + duration: 223.289536ms - id: 2 request: proto: HTTP/1.1 @@ -149,7 +149,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -157,7 +157,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ea76d091-1db2-3d95-c212-4de2a1aceb24 + - d9a7ecf7-b28e-784c-add7-8a287492529e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -170,7 +170,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -179,7 +179,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:57 GMT + - Tue, 01 Aug 2023 07:33:28 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ff2d2b31-29a1-457e-56bb-b73657d93ed2 + - e6015849-ebfb-45ed-44c2-faf9a23a8a14 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.731854ms + duration: 268.911406ms - id: 3 request: proto: HTTP/1.1 @@ -219,9 +219,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fd007640-82c7-3070-a5e0-e7e05c7c5b5f + - 435856b4-f4e0-fc90-8451-2dff4356437b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -245,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:58 GMT + - Tue, 01 Aug 2023 07:33:28 GMT Expires: - "0" Pragma: @@ -267,12 +267,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2a2c987f-f807-4c2c-655f-132291738926 + - e85515f4-8574-4319-4334-a34192d021c8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 605.96807ms + duration: 162.970788ms - id: 4 request: proto: HTTP/1.1 @@ -285,7 +285,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -293,7 +293,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cf040d72-9af2-e09a-bfef-23c6bbbd90af + - a5b35528-40be-ca15-ffd2-231d6bfdb114 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -306,7 +306,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -315,7 +315,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:59 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0fc4263a-c059-47bb-4590-63484a7cad16 + - f9f426e9-2e90-45de-4264-79a4fc108eb1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 489.406589ms + duration: 224.534802ms - id: 5 request: proto: HTTP/1.1 @@ -355,9 +355,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 90619502-5562-2dca-d0d1-1e567ce5d6b8 + - 1caf4e7a-b8ce-be1c-06b4-bdbb3f1ed7c8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -381,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:59 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -403,12 +403,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - add72fd3-39b7-4d11-5e98-6350cff6e028 + - 8b4604ad-b1a2-49bc-6803-2af492403f2e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 222.862249ms + duration: 179.845166ms - id: 6 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -429,7 +429,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a36f1165-233e-84b1-7da9-d1ec1fcd9dda + - ef0d6e80-9d48-216a-78c9-b4aef160237a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -442,7 +442,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -451,7 +451,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:32:59 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ea76223f-b14d-429f-6239-5902076e2abe + - 12b9faf7-3319-406d-5eaf-19c6d65b78d2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 323.159833ms + duration: 279.115876ms - id: 7 request: proto: HTTP/1.1 @@ -491,9 +491,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 37294895-2940-b157-bc46-9ee540b8e746 + - 7bc970dd-200f-30cf-1231-495bf4db967e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:33:01 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -539,12 +539,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b8549484-c39c-4d9e-5380-f7cd30028849 + - 4a15409d-12a3-48cb-5d56-fecc391db145 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.47505405s + duration: 198.740241ms - id: 8 request: proto: HTTP/1.1 @@ -557,7 +557,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -565,7 +565,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cdd19172-5892-00a0-5ad6-c1cb9c183796 + - 8ce36ba4-73e9-8922-5367-1ee299d1509c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -578,7 +578,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -587,7 +587,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:33:01 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9098cec3-ee30-4e33-7d84-95aa31e1b230 + - d35261c2-4d0e-4168-4d35-3ff550a9dfab X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 218.350343ms + duration: 257.4693ms - id: 9 request: proto: HTTP/1.1 @@ -627,9 +627,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9d5c426b-9761-64d6-9c34-bfd2424b5f86 + - a95321a8-2289-32dc-ef86-9583b26dba84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -653,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:33:02 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -675,12 +675,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fb0b8d5d-f002-4008-4dc9-94c3c4ed090e + - 834021ba-4ba8-4ec1-5b9b-a941703687eb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 666.897352ms + duration: 261.016727ms - id: 10 request: proto: HTTP/1.1 @@ -693,7 +693,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -701,7 +701,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f9d80e76-cb8e-6591-0853-bc26937ca6d2 + - 630f287f-4b02-c2e9-2782-4125f0826754 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -714,7 +714,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -723,7 +723,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:33:02 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8ff59e7-3e44-4e9d-775e-c46bde25c1ff + - 5970e1aa-2a64-4621-4ce2-ae36c8b6d3ea X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 305.199616ms + duration: 192.786934ms diff --git a/internal/provider/fixtures/datasource_globalaccount_resource_providers.yaml b/internal/provider/fixtures/datasource_globalaccount_resource_providers.yaml index 1ef7069f..935c140e 100644 --- a/internal/provider/fixtures/datasource_globalaccount_resource_providers.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_resource_providers.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bf3abdf9-e910-d78b-a78c-39f7a80216da + - caf8f0fd-95b8-d1a1-7273-ff7e809020d9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -34,7 +34,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:54 GMT + - Tue, 01 Aug 2023 07:33:27 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2b34aa5f-9224-43d0-7489-b87d5a8b7b57 + - 3c26f396-16e1-4f1b-7a45-95783839a409 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 627.819952ms + duration: 245.845207ms - id: 1 request: proto: HTTP/1.1 @@ -83,9 +83,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0d7474e6-702e-4b28-04dd-79b125333aac + - c805ad6f-071f-5fde-dfb0-7c4d9a64a7d7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:54 GMT + - Tue, 01 Aug 2023 07:33:27 GMT Expires: - "0" Pragma: @@ -131,12 +131,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ebe6c9d7-eaa9-4584-7fe6-2f79820a3a63 + - cedb0e31-8c1c-4651-4bbe-62a7cd765af2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 330.961247ms + duration: 269.07458ms - id: 2 request: proto: HTTP/1.1 @@ -149,7 +149,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -157,7 +157,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f9229b55-9c79-5cf7-095e-ae7ef4cfd221 + - 814f7fc3-c49c-46da-8784-83a94e7a1c42 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -170,7 +170,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -179,7 +179,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:55 GMT + - Tue, 01 Aug 2023 07:33:28 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 06d3c383-962d-43d5-4c2d-60e32efd69b3 + - 617a9350-ca99-4942-56bc-1a2f03a0515c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 444.131455ms + duration: 243.680377ms - id: 3 request: proto: HTTP/1.1 @@ -219,9 +219,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 594f754d-42f8-8941-11f1-46b4912ac32f + - 304f05ca-c53b-5289-48dd-a6f01069c460 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -245,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:55 GMT + - Tue, 01 Aug 2023 07:33:28 GMT Expires: - "0" Pragma: @@ -267,12 +267,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 37b322a7-df36-4c6b-50d8-a42f9af94e73 + - e4d4aa0e-f981-4da2-58b5-29fec7ad07f4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 275.593162ms + duration: 172.607903ms - id: 4 request: proto: HTTP/1.1 @@ -285,7 +285,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -293,7 +293,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0bb695ac-f3be-2818-7709-fdd1d09d59b9 + - 27945385-ef45-0281-5f8d-a42e0ec32878 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -306,7 +306,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -315,7 +315,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:56 GMT + - Tue, 01 Aug 2023 07:33:28 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8072ba07-347f-4eb5-4ed7-11a73c7e45ab + - b5b9df57-aee8-4df6-7f29-d30832818d3c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 412.208827ms + duration: 315.001745ms - id: 5 request: proto: HTTP/1.1 @@ -355,9 +355,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6e59e260-009b-1b89-3f5e-d63b4491f499 + - 1cfc2a31-ec02-2516-2580-dd005303a9c7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -381,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:56 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -403,12 +403,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 075deb54-0076-489d-4d9d-5699fa791024 + - baf91ca9-9688-4d1b-60fb-f1a2f87fdcc3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 323.824152ms + duration: 173.821747ms - id: 6 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -429,7 +429,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4f8e4904-84b5-8e66-e1ba-62df818378ec + - 48748425-8cbd-85db-f8e2-5ae84e89b9ac X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -442,7 +442,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -451,7 +451,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:56 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 50a45348-e66f-4151-5c85-c3c08f98012d + - d3862bcc-36d1-49cc-7b41-972e806725ba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 243.488269ms + duration: 271.366786ms - id: 7 request: proto: HTTP/1.1 @@ -491,9 +491,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9b7cb460-ebc5-6aa4-7f7b-1c7a7e896f9c + - 57297d78-12ef-2b90-4ee4-222379c61525 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:57 GMT + - Tue, 01 Aug 2023 07:33:29 GMT Expires: - "0" Pragma: @@ -539,12 +539,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 15ae09b3-a7b9-4bba-7a3c-2258419e65e3 + - dd1bee81-45ba-4ca1-5d85-e031ddb9753b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 231.832703ms + duration: 204.930582ms - id: 8 request: proto: HTTP/1.1 @@ -557,7 +557,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -565,7 +565,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5e708789-1d0c-9457-e1c4-fc5e0e11d352 + - af4d0d9d-131d-5239-9f79-494a366ec532 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -578,7 +578,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -587,7 +587,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:57 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4dfcbca9-2316-4403-6b06-088b249d9cfe + - 27ec428a-989f-4aca-444f-ea27d19b21d7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 239.245051ms + duration: 279.419338ms - id: 9 request: proto: HTTP/1.1 @@ -627,9 +627,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 52bd3a28-c8d5-6ff8-b857-808020035996 + - 5af8f6c4-1404-e034-3f4f-2d4190f278ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -653,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:57 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -675,12 +675,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - db3ccdc5-4eac-419f-44a5-42c00f3119d3 + - 3819e2f5-b9c7-4aec-780d-6032e742505a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 461.031097ms + duration: 172.358973ms - id: 10 request: proto: HTTP/1.1 @@ -693,7 +693,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -701,7 +701,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0a5509ad-ad19-dc3e-7415-e8e2391636e9 + - d744c224-408e-71c0-8b3c-b81d812edaf8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -714,7 +714,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -723,7 +723,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 08:13:58 GMT + - Tue, 01 Aug 2023 07:33:30 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5952c80f-3544-4f74-7619-7fb2591a0eda + - 5adaca0e-9fb6-4c12-5d73-1e6f1a943fae X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 310.444823ms + duration: 343.983273ms diff --git a/internal/provider/fixtures/datasource_globalaccount_role.yaml b/internal/provider/fixtures/datasource_globalaccount_role.yaml index 32c77aa4..16664fdf 100644 --- a/internal/provider/fixtures/datasource_globalaccount_role.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_role.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5de4f6c1-b4f2-8f8a-4856-5bc8f721d6d3 + - ded549f9-fbaf-7a6d-2df3-bd4867f610a5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:28 GMT + - Tue, 01 Aug 2023 07:33:22 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b93768a9-c48a-4abe-6043-1cccdcce07ce + - 80f44948-0819-4458-6b9f-017dc2cb202c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 578.569669ms + duration: 236.245841ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d7f61053-103c-9693-4eeb-394c3107b25b + - f0726ed8-b62f-d605-addb-116660cc4c9b + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:29 GMT + - Tue, 01 Aug 2023 07:33:22 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7e2210d6-baa7-45c5-7827-8b1e244ad9a9 + - ccb4d14b-538e-40f1-4244-7f79d1d12dfd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 231.551517ms + duration: 316.157599ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 82f158e4-5733-72c3-4fc0-a1fc8c424fe8 + - 31ec352a-a24a-114e-793f-d46a66fa4d3b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:30 GMT + - Tue, 01 Aug 2023 07:33:22 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a8fc0890-e446-40dc-6b29-2a8d337e0a1d + - 0047000b-2e7a-42e6-7766-2ef3fe6ab10c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.211804ms + duration: 209.727988ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a080839-0653-1d2c-2471-667c08008acc + - 143d0281-971b-f088-e7e0-46141e0f9e5a + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -231,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:31 GMT + - Tue, 01 Aug 2023 07:33:23 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 22e09854-c7b0-4087-7294-b299f57c0b08 + - 2a209c7d-93b3-423c-42a5-a60af011f0b5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 219.825582ms + duration: 415.761944ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 940194d6-1c84-6296-8121-396a34e86332 + - fdabdac1-65d7-28d4-9f10-e4fa332d850e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:31 GMT + - Tue, 01 Aug 2023 07:33:24 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3a28a44d-1cf0-4466-678d-42fcd6f855db + - be46fcda-50f2-4a51-6767-de26a888d62e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.49192ms + duration: 375.743ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b91707f8-f0f4-9865-96ab-4c07918f6acf + - bb82cae5-963d-fa3b-b1c7-7e37834066f2 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -359,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:32 GMT + - Tue, 01 Aug 2023 07:33:24 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 52b6d2d6-a9c1-49a7-583f-4ab95a299e07 + - eaa1c0c9-2020-4219-6592-bb521273e65f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 255.278617ms + duration: 427.809343ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 62cbe2fe-95b7-87f9-2f93-a1349a1c62b5 + - e0719124-9582-4d80-a9b5-f68ea55d8802 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:33 GMT + - Tue, 01 Aug 2023 07:33:25 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1ea9798d-6f37-4f1c-52b5-f872230fad68 + - ab1ea834-0965-4ef2-570c-d14d8640afbe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.704106ms + duration: 287.98541ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce37974e-ba9b-225d-9afb-91ea1eb56e5e + - 3e44f7ef-75ff-d0fd-a321-15cff3834348 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -487,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:34 GMT + - Tue, 01 Aug 2023 07:33:25 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2df9c02c-e934-41ac-4f90-9dfb7d5999bd + - ff061b8e-ae9a-4a49-6060-ba08275df831 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 260.439795ms + duration: 187.940326ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d8bd65a1-56fc-d766-d319-8d9a058f7ec0 + - 71d65897-4be0-053e-1cd2-7866fd71d4ea X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:34 GMT + - Tue, 01 Aug 2023 07:33:25 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 05b32c5b-8a2a-48f5-5080-3e1f5760e61e + - e335a0b7-e833-4cb5-7079-617174f25652 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.151746ms + duration: 173.476845ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 36037146-0189-ce04-5d67-0e52cc4dd19b + - ade38b4b-4566-1120-aa82-7ccdbd4db8b1 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -615,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:35 GMT + - Tue, 01 Aug 2023 07:33:25 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e6d04c77-cf14-45d4-4f34-815ddf4aba5e + - d63fe66f-ef1a-41cb-5c6e-2ca48debc80e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 238.490258ms + duration: 370.696891ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31319470-b175-5a5c-138f-2b2e761083d8 + - a2517fb9-e8e2-60b7-f493-f1524ffcbb2b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 15:42:36 GMT + - Tue, 01 Aug 2023 07:33:26 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 93627a9a-99f8-4fff-5c0a-ba6dfa4c1ef7 + - 62f2260d-bdb6-47e5-6d5b-e03b8e55fbc1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.572877ms + duration: 295.60194ms diff --git a/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_exists.yaml b/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_exists.yaml index e9734280..0b5468c6 100644 --- a/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_exists.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_exists.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3dae17bb-ffa9-3234-117e-8885c0b93ef8 + - 2cd6a9a8-d467-531d-62d0-d6fc13602148 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:05:55 GMT + - Tue, 01 Aug 2023 08:45:09 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 15c649d7-00ab-4574-4d98-f8b33a99f5b1 + - a1281117-a701-420c-7191-4b230cd471ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 833.558204ms + duration: 392.617578ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 267d38ce-431b-e7b4-81a0-a889284b4d96 + - 18442257-3600-4bf5-8e0d-b8c987e937b7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -98,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' + body: '{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:05:56 GMT + - Tue, 01 Aug 2023 08:45:10 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 92c515c4-1918-4351-49f3-459d8fe07c7a + - 4553f371-972a-4110-4a0e-afd8f5441eb5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 289.892346ms + duration: 196.295435ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c339cbd9-2c54-c94d-9669-86127fe097d9 + - 774c19f4-5fa7-3cce-dbfd-04952ab6bfe2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:05:57 GMT + - Tue, 01 Aug 2023 08:45:10 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1244b286-945f-4532-5e9b-6f8697d2e677 + - f3deb4e0-4236-434f-77e4-b2d03e7392cb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 460.049348ms + duration: 336.993742ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9b415394-a242-3b47-c6a6-14ffbf27fff9 + - 98f850ab-306d-eeff-8568-987171af0467 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -228,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' + body: '{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:05:58 GMT + - Tue, 01 Aug 2023 08:45:10 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 18b58df2-a323-47d6-6e8a-b2352ac59d6e + - e7c4171a-131f-44c6-4c1a-1f5c1683d131 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 216.4916ms + duration: 264.930766ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b5bdf4a3-7f73-3017-a499-83edc8d48570 + - f0436ca9-e124-c941-8ec7-597e27cd9857 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:05:59 GMT + - Tue, 01 Aug 2023 08:45:11 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 17e33f78-0777-4c63-7de3-de3fab86a8c4 + - 125e499d-7786-4a84-7127-a875b1fb099f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 468.704278ms + duration: 345.463152ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 64eb932a-2e31-fdf8-592d-b3e9d25e3033 + - 2d31de95-450b-6db9-7de8-36dc79d27f02 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -358,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' + body: '{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:05:59 GMT + - Tue, 01 Aug 2023 08:45:11 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8fb02e7f-b743-4672-70d1-3d7100b97f16 + - 65737128-1223-4998-680d-03f07e321923 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 173.759989ms + duration: 163.171885ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6ff8a44d-abc4-0c05-8e42-47cea7bf22e0 + - 5dd48799-8fca-a809-9cd0-2438fbb242fb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:06:00 GMT + - Tue, 01 Aug 2023 08:45:12 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 77027c30-8547-4f71-6ff3-e3bf2805e4df + - 3b0a02f8-451f-4a37-7fea-de4a78dc8d72 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 454.649004ms + duration: 467.656135ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e2ecaf73-2070-1fc5-6f5c-e274f716b1c8 + - 93520f46-f4f1-c7e9-74ee-504630957245 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -488,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' + body: '{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:06:01 GMT + - Tue, 01 Aug 2023 08:45:12 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 155026de-f3be-4091-5cef-065ee5830970 + - c1e698c7-00c8-480f-660d-cadc7a7a2acb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 291.083171ms + duration: 186.947219ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d076eefb-7993-2c92-2f30-a65b81646d9d + - c694a235-4c9d-a863-506a-d8aba22083c4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:06:02 GMT + - Tue, 01 Aug 2023 08:45:12 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d69f7ff7-abd3-4814-5c54-3f88229a38d7 + - 68bb125d-8dd8-47f8-6ece-c2ebc276b442 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 460.163386ms + duration: 327.708914ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3233a9b4-b3b8-6b01-6528-2e6ae7be8781 + - 7f984b63-9814-9d0f-b2dd-7e06ddd8d243 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -618,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' + body: '{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:06:02 GMT + - Tue, 01 Aug 2023 08:45:13 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7d591376-2187-407c-72e1-ae12430b8240 + - 72d69c94-d1d3-4131-7019-97e3c3151083 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 199.194821ms + duration: 156.012667ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 466348f0-fd4a-652e-e632-437f592fa077 + - b81dd1cd-fa8d-0a00-b662-5e00b6f8de1c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:06:03 GMT + - Tue, 01 Aug 2023 08:45:13 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9a944ea6-39c1-444d-41cb-a25cf3ba0e73 + - 7de4e873-2522-42e0-5d13-8df430302301 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 577.994104ms + duration: 216.922007ms diff --git a/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_not_available.yaml b/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_not_available.yaml index 05a7f77b..3887780a 100644 --- a/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_not_available.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_role_collection.role_collection_not_available.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d6df8181-0331-4956-233e-08599cdacdfc + - c1c70a84-914a-f9fa-bf2a-eb559686f0e7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:02:30 GMT + - Tue, 01 Aug 2023 08:45:13 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8ea539b6-24b1-4b99-7abb-91bf4d27414b + - 6fcec9d5-d770-4e66-45bb-dcb3763c9158 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 721.9811ms + duration: 232.610234ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 78caadfb-71a0-67be-5762-33b490061685 + - 0c2a2da6-8a32-6bb8-9f93-6b9f2a5b49e4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:02:31 GMT + - Tue, 01 Aug 2023 08:45:14 GMT Expires: - "0" Pragma: @@ -131,9 +131,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a134570a-035e-4b41-53b0-c1a1a85b23ac + - d55d548f-aff0-4dfe-492b-9b6123c5779b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 290.3803ms + duration: 154.127193ms diff --git a/internal/provider/fixtures/datasource_globalaccount_role_collections.yaml b/internal/provider/fixtures/datasource_globalaccount_role_collections.yaml index 735a4958..42e56ee3 100644 --- a/internal/provider/fixtures/datasource_globalaccount_role_collections.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_role_collections.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d6409061-8fb8-0e3b-dc53-3b2f8b692fd3 + - d02660d2-3823-1ea5-49a4-6e7015a2ad36 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:48 GMT + - Tue, 01 Aug 2023 08:42:16 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e915e449-3660-4b87-783c-998e951951a4 + - d6d31960-6ef4-4066-4113-6422c2dca54b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 840.471746ms + duration: 473.157852ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 51903a07-8ad2-f219-edb5-5557a07ee1a7 + - 536d4c48-5a52-f421-5bc7-b318fb7d4935 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -96,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"Read-only access to the global account","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' + body: '[{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:49 GMT + - Tue, 01 Aug 2023 08:42:16 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f2f4e0be-2b6d-47b1-4588-2e0eb3d6700f + - c9b9ccab-ba1d-4165-65f8-390f73f10b61 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.55011ms + duration: 315.735446ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 29e1db80-f22d-d6ef-fc7c-3fa7b35de9cd + - 2be3ef5c-9d05-ab08-3619-c1fe4355cd2f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:50 GMT + - Tue, 01 Aug 2023 08:42:16 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c7de516e-5dde-4419-6ba2-0bc9777fc0cf + - 0249cc34-cf20-48ac-42ea-dccb042b679e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 513.93966ms + duration: 355.594647ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9409cc9d-1e12-2f87-8cd6-4d9b69109073 + - ccb0ea00-180a-560f-2112-af0ec862906b + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -224,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"Read-only access to the global account","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' + body: '[{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:51 GMT + - Tue, 01 Aug 2023 08:42:17 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 77c8ec98-b992-4f78-598b-6a55e0a01379 + - b2efd9ad-a31a-4f3f-57f3-e6844471f875 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 200.87735ms + duration: 180.31854ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - edbf9735-43b3-e9ac-ee38-900710a7fe58 + - 2f0d1a8f-e475-0174-7390-35ff9affff0c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:52 GMT + - Tue, 01 Aug 2023 08:42:18 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 89cc1016-f845-4d04-7b4d-01f962613595 + - 5e246bf3-04d9-4edb-571e-9b305a08d081 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 497.465131ms + duration: 478.564767ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1280dd20-2d67-a9ba-e5f3-601199b1c44d + - 8b58747f-a8d8-9f0c-9104-e440e57ade43 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -352,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"Read-only access to the global account","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' + body: '[{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:53 GMT + - Tue, 01 Aug 2023 08:42:18 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 73afd506-15af-496d-540f-caab329378b0 + - 1796abde-a0af-4709-40a4-39ff9e1f5437 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 213.237509ms + duration: 161.76765ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce128ec4-34f2-396a-43dd-8b99343a2c10 + - 5019f6a0-6dc3-8d03-1e4a-9b7c56efcb9f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:53 GMT + - Tue, 01 Aug 2023 08:42:18 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5c9a4750-4459-46ac-6fb7-d12b0e41d734 + - 23b371f8-f737-4518-448b-56ebbc469d83 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.194685ms + duration: 226.655089ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a98fa71d-7596-51d8-91d6-3321c729b2ab + - 85f178ef-db1c-eebf-94e1-f75f21ba5cee + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -480,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"Read-only access to the global account","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' + body: '[{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:54 GMT + - Tue, 01 Aug 2023 08:42:18 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e97c8afc-810f-437b-6a51-8b8627a5e298 + - be687f90-448c-44b8-7e95-be501fe496b3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 162.424698ms + duration: 241.150042ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6020e35d-5c4a-31d9-e118-8be913aeede5 + - 176bf65a-4af4-dd02-1f07-f9ee26f5d733 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:55 GMT + - Tue, 01 Aug 2023 08:42:19 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a3ef1cc7-34df-4ec9-6dec-ec4205dcd156 + - 773d7699-7857-4aca-491f-6407b17d0e08 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 476.973501ms + duration: 429.419396ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 38ba4037-3071-76ac-7cfa-2e8c4fb4d9b0 + - 784d7106-7614-c69a-27ea-6660c9d5ba37 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -608,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"Global Account Administrator","description":"Administrative access to the global account","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"Read-only access to the global account","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' + body: '[{"name":"Global Account Administrator","description":"","roleReferences":[{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Admin","name":"Global Account Admin","description":"Role for global account members with read-write authorizations for core commercialization operations, such as updating global accounts, setting entitlements, and creating, updating, and deleting subaccounts."},{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Administrator","name":"System Landscape Administrator","description":"Administrative access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_admin","name":"User and Role Administrator","description":"Manage authorizations, trusted identity providers, and users."}],"isReadOnly":true},{"name":"Global Account Viewer","description":"","roleReferences":[{"roleTemplateAppId":"uas!b10418","roleTemplateName":"GlobalAccount_Usage_Reporting_Viewer","name":"Global Account Usage Reporting Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global account usage information."},{"roleTemplateAppId":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer","name":"Global Account Viewer","description":"Role for global account members with read-only authorizations for core commercialization operations, such as viewing global accounts, subaccounts, entitlements, and regions."},{"roleTemplateAppId":"cmp!b17875","roleTemplateName":"GlobalAccount_System_Landscape_Viewer","name":"System Landscape Viewer","description":"Viewer access to systems and scenario-related resources."},{"roleTemplateAppId":"xsuaa!t2","roleTemplateName":"xsuaa_auditor","name":"User and Role Auditor","description":"Read-only access for authorizations, trusted identity providers, and users."}],"isReadOnly":true}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:55 GMT + - Tue, 01 Aug 2023 08:42:19 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 451fe28a-3239-4efa-7a37-78153e16ba9a + - b2721286-0e3a-4982-6a41-ad88d905d18f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 338.447692ms + duration: 161.184092ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 986c1eb2-bb3b-a30c-4e70-cf02aa7be693 + - 6f990ded-eb1f-81f9-0136-866fac83dc5f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Thu, 25 May 2023 16:10:56 GMT + - Tue, 01 Aug 2023 08:42:20 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - db81ab4b-69a3-4e2a-577d-f8b9b84daad0 + - c698caf2-5871-43f3-5179-305d100cee46 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.734392ms + duration: 385.99201ms diff --git a/internal/provider/fixtures/datasource_globalaccount_roles.yaml b/internal/provider/fixtures/datasource_globalaccount_roles.yaml index 6fb7a82e..49dbeedf 100644 --- a/internal/provider/fixtures/datasource_globalaccount_roles.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_roles.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7744782f-379c-b786-3e91-fcfc7c0966ad + - 17a35629-7918-8d2d-9f76-48f9773077c0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:50 GMT + - Tue, 01 Aug 2023 07:33:02 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0b69734-41f9-4dec-7060-70a6ca588452 + - b3b6c569-c765-46e8-53ef-617e50609aa2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 789.552332ms + duration: 556.808436ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d60f671d-32ff-14cc-3a6b-49784e2750b2 + - d1a2fc6b-a119-2230-1423-bdae5f775f98 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - c6fdbddb-1ed2-41e5-53b9-527a626bc6a1 + - fddc3014-4e20-42d5-4e12-acbc2ae9a6c5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.153256ms + duration: 300.305406ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - df3b4186-6d5b-c775-91a8-a24501f41710 + - 501f99fe-27cb-6e52-e468-77b14db85964 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 90f2f6f1-9628-47cb-4953-bf9d42aa4cc6 + - fdc3b22c-39bb-4f7f-6abe-458344757716 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.076414ms + duration: 339.26658ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c8141cf2-e767-ca37-cf71-5c6519d8d200 + - d98c7999-3b22-e752-9fc6-d240350d5fc7 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -231,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 69900c7f-3def-4648-6db4-55b792268530 + - 39e4afce-fca0-4712-5b2f-789190149bf0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 288.710298ms + duration: 267.966699ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1d7b16c0-eb5a-d961-5fa0-338ad880b31e + - 8424936f-a88b-432a-aa28-3c01d2ef5f76 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:54 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 79333f17-5ad1-4e01-6ca8-a1e2456a88a7 + - 8fab4cdf-beb9-4c9d-4978-3a281e2ac9b1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 363.44247ms + duration: 218.914343ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2890f7fa-9e7f-0236-5e33-6d745bf43efb + - a6bc6319-d58a-f912-946a-a07070bf9f6a + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -359,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8370ab6-df86-4f08-4644-6bc964760b76 + - c330df74-19ad-4fba-7bb6-13cb9dec7eff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 294.461945ms + duration: 406.170722ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f3fddc8b-c667-85c8-6b4d-d1b2c9a95ee6 + - e860d3c4-f618-4aa0-33ae-3a9f97ba49b4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 09b590f6-b7a0-4130-4266-d907a372a6be + - 1ef2c4aa-200e-4499-5b59-553f61d8ca23 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 346.824724ms + duration: 319.159027ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 353fc924-ed43-0394-223e-9e509f82d2ad + - 23036598-e120-6e37-f479-80ffdd09a05a + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -487,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 722fffe4-f645-4050-53ad-8dcdf53c0358 + - 57e01399-0a82-423b-44e7-23425f43df1e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 291.036953ms + duration: 251.231751ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 30a3777a-e1b5-00ee-7da7-a060e90ecbba + - d02786cf-2430-a02f-bb7a-27ec237447e5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5680a156-9d4a-487f-5de8-2a792475b688 + - 9b9ca3ee-4963-48a2-53b3-5973ff6d175d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 365.406959ms + duration: 193.561722ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cb10273e-b84b-8910-eff0-9d9a44e22da2 + - 4c0a9f3c-2895-e172-3ad0-f013f27bce3d + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -615,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2cd0cd89-05d2-4887-60fa-1038d2859723 + - d23d9afe-e592-4fa2-5f0d-d838355cb7d1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 294.716713ms + duration: 366.728841ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8c62dbb-8602-80e3-4962-cd9ddd87e357 + - bda6540e-36bf-8942-63b3-6a69ffce71a1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 15db006d-9e72-483a-56f0-9c379649417e + - 47e0e846-abdf-42bf-4825-74e7490b14fc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 331.16254ms + duration: 290.820958ms diff --git a/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_exists.yaml b/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_exists.yaml index 3f62e55d..776f947d 100644 --- a/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_exists.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_exists.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b1f5552d-c86f-24e6-3f5b-45fe55ad50a6 + - ed32d8f3-5378-82c4-038e-d63897bdda7e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:13 GMT + - Tue, 01 Aug 2023 07:33:22 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f0ebb5ad-fa9a-4018-79ad-1a903e658768 + - 687b53ea-f90a-4932-784e-3161f47f8079 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 837.73757ms + duration: 420.708289ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c541ac5e-23c1-b3f8-42c9-277483433fc7 + - 7ae6753a-3c53-6dc7-9d69-d56feb7dba91 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:15 GMT + - Tue, 01 Aug 2023 07:33:22 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0a555da9-4465-4fa4-696d-493e6613d4c5 + - 7a18871c-f880-4ca7-43e0-2eeed137968e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 271.763749ms + duration: 232.418875ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 798794fe-a2b1-a357-c927-c290f7108a4c + - 027d8025-088b-15be-603b-7e061c9d6885 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:15 GMT + - Tue, 01 Aug 2023 07:33:23 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 469c3e21-fe51-4a0a-47e0-00c2e13e7017 + - 70853026-fab0-4ad0-7116-037d81f3f1b7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 446.1003ms + duration: 187.109595ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5468ed45-b6f2-a89c-e019-57e4fbd5ddba + - aae3d1dd-ab9f-b6d4-4f78-aed26932941e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -235,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:16 GMT + - Tue, 01 Aug 2023 07:33:23 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a6e0a904-e781-4f1a-4414-264284d90ca6 + - 01ce589f-e557-4c3a-7a20-b56b78b7bbe6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 202.869814ms + duration: 133.405664ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 96cace19-ba5d-3ce1-5a21-ddc5c92f7880 + - 7af99597-fbbb-86b6-8ee8-ab721c97e6a6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:17 GMT + - Tue, 01 Aug 2023 07:33:23 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a61e9501-cb61-41c9-528a-66eb055b26e9 + - 8674f083-e42c-4b51-6cfd-0c5a58c60e1e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 418.083676ms + duration: 240.524709ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 56187620-1c18-4168-b388-fc0b7eea1c8e + - 96ff7d89-7337-962d-a381-59bfe03ab9e3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -365,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:18 GMT + - Tue, 01 Aug 2023 07:33:23 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 24cc1b51-90d2-4d70-51c7-4cfbbe8af044 + - 622b3a26-5394-40db-4dd7-82800ef7789a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 211.427872ms + duration: 144.714595ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 701296cc-de00-31fa-c8bc-3ece6896db8c + - 59ace3ae-8267-db27-341a-292867e776dd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:18 GMT + - Tue, 01 Aug 2023 07:33:24 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dad2d310-6ff2-4986-5335-8be43fafdee8 + - 38649066-f3d3-474b-4857-8743b7ecfe0f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.935063ms + duration: 386.552967ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bc0a6ab2-4dcb-c64e-490a-7125be34b43e + - f987075b-7c59-01b4-6690-4dda7a18df1d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -495,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:19 GMT + - Tue, 01 Aug 2023 07:33:24 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 19876528-f367-4288-427a-c7a4bf519b49 + - 033c1c96-5043-40d0-6efa-1e47d154f9fe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 209.063598ms + duration: 380.792789ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 58eb49ac-b88d-1968-f881-b2a9a06ecc2c + - 681d5e2a-5da2-2de8-a708-6519840e57d7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:20 GMT + - Tue, 01 Aug 2023 07:33:25 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 010279ff-7230-4b62-4efa-6fab79cf9e63 + - 104e3a7c-1e67-4502-6656-606b49c29210 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.370333ms + duration: 319.178469ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7b51546a-c43a-b2c6-6f7a-e46aa10aee7b + - 2235c586-05c5-19c4-fcab-cdd0aa2f3683 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -625,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:20 GMT + - Tue, 01 Aug 2023 07:33:25 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d7c339f-dab0-472d-4c7e-c5a78c2098ec + - 2c24b877-d56e-4d94-6211-eec6bc6434d5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 198.503228ms + duration: 150.127989ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d71dddb6-a1b4-5735-476d-eec3f0c4a8f2 + - 596380cd-44c4-a609-7e95-1687c0846d6b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:39:21 GMT + - Tue, 01 Aug 2023 07:33:26 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8cf23b07-789a-462d-6895-2d88016f4fbc + - 21ffeead-e26c-4edf-5750-da2edc5cbe2b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.415968ms + duration: 372.273201ms diff --git a/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_not_existing.yaml b/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_not_existing.yaml index 30be6998..6dde96cf 100644 --- a/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_not_existing.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_trust_configuration.custom_idp_not_existing.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c813e830-7724-f21e-6e9e-4fcd271b79ca + - bb4559f7-fde1-3f9c-8a7d-7b64ff91dfb7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:06:22 GMT + - Tue, 01 Aug 2023 07:33:26 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5f0ae7ac-6651-4298-489e-3e3f0199aaad + - d0405ac4-6922-475f-52fd-bf65c02c3018 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 781.1796ms + duration: 347.868226ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 77da52fb-827c-c31c-5a80-1ee175462911 + - 44cf1103-c69d-70b8-ede9-e537bc34904f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:06:22 GMT + - Tue, 01 Aug 2023 07:33:26 GMT Expires: - "0" Pragma: @@ -129,9 +129,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cb73309b-a27c-4b0c-55aa-747a1c720e8b + - ddc2644e-3192-49a9-696b-381e2d23b71d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 275.9017ms + duration: 143.251747ms diff --git a/internal/provider/fixtures/datasource_globalaccount_trust_configuration.default.yaml b/internal/provider/fixtures/datasource_globalaccount_trust_configuration.default.yaml index ba6e8517..6f83e049 100644 --- a/internal/provider/fixtures/datasource_globalaccount_trust_configuration.default.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_trust_configuration.default.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 32e8fba9-d78b-c69b-b538-266093256498 + - 1875d8d1-8af0-3214-078a-b6deee5fcf1f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:39 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6c6d0f37-c6c8-4c45-4bee-9b7a2fdb479f + - 4ef1ffcd-ff40-47ed-6162-ebf855afb140 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 763.544006ms + duration: 493.546255ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9b818e9d-867f-4133-c514-4db66dd2bf9c + - 8e4c8396-7185-ec6e-45a6-db61c89b7a8a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -98,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:40 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8ff20e00-4771-4077-4613-9db7a16d854d + - f33982ef-df1b-482e-49a9-c0aa3a943d85 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 309.473334ms + duration: 152.933214ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 379ce919-1844-3370-235f-d1e04d2a1cdf + - f4eeda7f-da79-e78c-5cd2-59b7c067118b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:41 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 735dee4f-e3a9-46f4-7a97-4d065c7ef787 + - b1493814-0dfc-4068-4dca-13c029a02ec3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 457.27063ms + duration: 260.184297ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 43781dc3-6819-4428-d9ba-9b3ddcae9ae2 + - 1ccdb815-551d-9bc8-623b-e56f4e0d46df X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -228,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:42 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1fc5a3b1-69b8-4fe2-7450-a77d428844a8 + - bef95bd7-fad9-47a7-719e-6cb3359aa406 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 234.50698ms + duration: 154.651893ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ba700c09-7bee-8283-e190-e123efbd3a81 + - c9bac222-3d0f-2bd5-3971-6f77c897d50b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:43 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 07639055-c6a9-4351-47ee-21df09726bc8 + - 72fd9a47-6f32-4ddf-58d5-03707b91fdb7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 444.99589ms + duration: 340.686199ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5f7fe21a-24e9-ea0d-c450-a7b3c3b81bba + - 6114ce84-a92c-d87f-fdcd-45d1e2543bde X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -358,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:43 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a9bdf198-f710-4a0a-7ef3-7689ca3e6f83 + - f8e48275-c984-4e7d-54bc-d3222d8e0da2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 182.503222ms + duration: 197.352905ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 831583c5-995e-277a-d7ab-fcad2e636823 + - 2bf26a23-a18c-76c2-0e37-b8c7930b6b6a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:44 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ea684708-8b11-4972-5560-63feddd19410 + - 6cc5601a-e0f9-4d00-6c3c-df57f3c1b18e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 458.308954ms + duration: 528.43122ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1f9ad189-ba55-6cf3-29f0-3bb39dcdc284 + - 7580e8a5-51d3-53c2-cbdf-ac864287bff6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -488,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:45 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3c9c7c21-b364-424b-624f-b9eb848c2a82 + - 3046b5b9-f604-4d8b-5557-a15b781e3a73 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 206.028678ms + duration: 149.110486ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a524756f-0cd4-630e-11d3-cc47f01295bf + - 592adf8b-a6bf-b7e8-3c8f-a68fe2f477a3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:45 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 29fb17cd-b0c5-4da6-5216-ab5057194683 + - 8447dca6-71d3-4c14-4647-c7ed42e5f0ec X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 501.954ms + duration: 402.779066ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 954b00fb-1c5b-34cc-1527-bb6b3e91da5e + - 6576790c-c7a0-bfeb-ca30-88dba1602c32 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -618,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:46 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8b81aca-3563-4581-49e1-e38d2958f100 + - a423a4f3-f467-4c6d-5ccb-528b843fc983 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 257.829831ms + duration: 169.670362ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5dbd1bef-41bb-0076-0d54-c71cc40ed838 + - f22aadb3-6df3-3278-5cf2-ceed41f4ccbe X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:37:47 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30d5978f-ee49-4f84-49e3-cf1b14d13d68 + - 059e80bc-9d22-48f1-6043-a1da75620723 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 490.401361ms + duration: 275.726052ms diff --git a/internal/provider/fixtures/datasource_globalaccount_trust_configurations.yaml b/internal/provider/fixtures/datasource_globalaccount_trust_configurations.yaml index 83ffc8ec..33f07c9a 100644 --- a/internal/provider/fixtures/datasource_globalaccount_trust_configurations.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_trust_configurations.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0f326635-6346-8519-ebc3-13665e937b15 + - 91410efd-13d5-1e39-4ad0-a9c89e30ecb9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:53 GMT + - Tue, 01 Aug 2023 07:33:17 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1371ba51-0c40-4ebe-6b83-7a1577ba2bfc + - 1ee48203-0db4-452b-6736-87c5b307d922 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 550.739704ms + duration: 222.149689ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7f0a5dee-ba75-27ba-fe8a-20c17c4b13eb + - 9e7a0a85-3eaf-f23f-04cc-fa287e2711f1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -98,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:54 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 27e8f43c-dfe4-4358-56ba-89601ff2885a + - d45b147a-6e74-4c74-54be-a47786515882 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 237.509999ms + duration: 415.539332ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cfb8e74-9e3a-e5a5-0336-96f3e657a6ac + - 55839c6e-6623-7d02-bf9c-29c1866177c4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:55 GMT + - Tue, 01 Aug 2023 07:33:18 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0e4b3817-8e63-4690-725b-20782a7b4ce1 + - 776cbf68-ea3e-4abb-5be4-5495857b2508 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 479.150664ms + duration: 220.065798ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 391dc2dc-4695-25cf-571e-875a58891a86 + - c815edf3-c900-67c5-5de4-a001c761024e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -228,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:55 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a5cacfb8-7894-409b-4d09-0884a346288b + - 2c4e0265-2a4d-458b-7dae-037af0b86c58 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 254.316516ms + duration: 347.645868ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 84f802da-cb0e-b6cd-aaef-41013dfd2dab + - 58d3f354-945a-b25f-ca60-1da1e331d419 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:56 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d794ce10-b035-4c50-4eeb-d726b26cd092 + - dea98054-2ffc-4b30-73dc-f0f42a209690 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.3449ms + duration: 373.452326ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 633abc36-2dca-d30f-bc5f-e7ec778bb3d7 + - 287e8438-1f0e-148f-e19e-8d4ed61efa31 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -358,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:57 GMT + - Tue, 01 Aug 2023 07:33:19 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 594e77ef-f665-4e5b-6163-afcacf51e37a + - 6050357b-40f1-4bd5-4d97-19831454b217 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 201.422529ms + duration: 146.259983ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c743f7a4-6a1a-689d-f8a6-efba15cc2dd7 + - 88e05ddf-028f-f349-7dbc-b776c1e3bcc0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:58 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5fdfd2e2-2b0d-4b7f-4527-61f4881f21ea + - f8b6f0a3-cb7b-469b-4ab6-781f2d26cf22 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 405.508158ms + duration: 187.974137ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a99a6498-c425-6bf7-721b-e02739de9c31 + - 10b238ff-be5f-c1f6-6538-5c5ba23afd2e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -488,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:59 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9b2750f5-0fb2-4af2-4ae2-7806145fb577 + - d6c5ea81-f342-4795-7ff6-2c3f023516ad X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 264.253847ms + duration: 140.74196ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b5de4ca5-6756-1fe9-4c17-f7e0bccb0bf8 + - 34461fdf-7954-a7ac-46ab-67c728c9565c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:46:59 GMT + - Tue, 01 Aug 2023 07:33:20 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8ca49644-c68c-4ab7-7c7f-f895b52e220e + - 97cd492e-db3c-4c23-60b5-25cbbcc261b2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 426.124732ms + duration: 278.936703ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a0709a8-16a1-73fd-98bb-7c1dba15c675 + - 40714a6a-167a-560a-41e4-01d4ec2242d9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -618,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false},{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:47:00 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 68d0943d-a667-4b62-78db-143f61d40722 + - 932a6477-b84b-4729-6f13-d6f3ac97b1b6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 228.238204ms + duration: 239.095275ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ca084f08-2362-6258-0252-5fc849a309fc + - 97244614-d795-5738-bd49-2c3f3f8685d4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 15:47:01 GMT + - Tue, 01 Aug 2023 07:33:21 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 267ac851-19db-420b-6493-1d6992802f2a + - d75f0eb5-2135-4320-647a-84924992f753 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.743221ms + duration: 275.584798ms diff --git a/internal/provider/fixtures/datasource_globalaccount_user.yaml b/internal/provider/fixtures/datasource_globalaccount_user.yaml index eeaedcb5..bcc77c7e 100644 --- a/internal/provider/fixtures/datasource_globalaccount_user.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_user.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bd61d999-ee01-4e94-c690-591325c29ec4 + - acb2d1b1-d4e8-975a-58a8-587298748ca6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:30 GMT + - Tue, 01 Aug 2023 08:32:14 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 62e93429-6f7a-40c2-6cfb-d38e45b0c246 + - 02b0e25a-96c8-405c-4863-78c641287d41 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 813.066065ms + duration: 441.216329ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cb80142d-6516-8b92-fa18-2f1b48b7ed69 + - 4485309b-3ecf-ad68-2baa-624b548341ec + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -96,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":["Global Account Administrator","Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":92,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:31 GMT + - Tue, 01 Aug 2023 08:32:14 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 00dcda09-6764-482b-4dad-0b494d00c5f1 + - 188b38e3-75d9-4b09-5bea-cf9324a028dd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 308.776653ms + duration: 356.534273ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b580f74a-cf35-920e-3446-922b0c8aac93 + - 2e46c4f2-9ff6-8c9f-f877-2423849781ff X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:32 GMT + - Tue, 01 Aug 2023 08:32:14 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 999f8076-44af-4599-7cb7-c7de46e7b8be + - af3504ce-1b46-4506-500e-78331a62c098 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 514.135447ms + duration: 399.253115ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 959b62e4-9841-afbc-4009-4edc3a8d6d68 + - 3ef7ba8d-b733-83f5-d07a-eea7a1063e59 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -224,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":["Global Account Administrator","Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":92,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:33 GMT + - Tue, 01 Aug 2023 08:32:15 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 699bf864-5861-4fdc-55a0-a7df3218922f + - cd34d36b-e868-424b-57ba-f3cc27e2283a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 273.95373ms + duration: 245.714673ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0bf9f67b-ab0d-aad5-3274-fdf67a6e0dba + - 35576c9e-f75d-35bd-0e8b-3497e49410ce X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:34 GMT + - Tue, 01 Aug 2023 08:32:15 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 18b03f1c-3b7c-43e4-62b8-a5f7397fc050 + - c77d11fc-d0f0-4dcc-5ebe-bb4c761ee1f3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 508.4594ms + duration: 399.115825ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 39572bc7-3645-96a0-d8e6-743454d24449 + - d3695937-fec0-772e-174b-d0e16b1a7c3d + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -352,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":["Global Account Administrator","Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":92,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:35 GMT + - Tue, 01 Aug 2023 08:32:16 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - b3466263-0ef9-44a1-5cf8-4d3e5183e0fd + - d6800973-3eb7-4692-716c-d2250678fda5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 245.313206ms + duration: 210.853817ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 12dbe774-314a-199d-5aa4-3d9973aa8272 + - 8be26eec-7541-39eb-bf1c-ddd384c61e82 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:36 GMT + - Tue, 01 Aug 2023 08:32:16 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b8f3d48-3c55-498a-619d-bc50ef6a8589 + - 4b5ef5a2-340e-4664-6912-9b7cf52fd821 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 509.880884ms + duration: 295.426308ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f1bea200-7d20-e5a4-763a-550cf6715c71 + - b6d02a6c-b9b1-bb30-0404-55afb5150c60 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -480,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":["Global Account Administrator","Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":92,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:36 GMT + - Tue, 01 Aug 2023 08:32:16 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - c5e78a77-de47-40d8-73cf-ca2e6266bdf8 + - 41849878-47a3-4a13-775a-3b09972cfd80 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 271.176777ms + duration: 186.641012ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 78793ce9-33b0-8a74-1530-fa120d9f51df + - 59385b82-f6a6-15e1-da5f-3061e51a1af3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:37 GMT + - Tue, 01 Aug 2023 08:32:17 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 28fdc54d-3508-4e49-7d86-503a4e78840a + - e5751409-525a-4788-779b-7aa5c085bee2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 472.733417ms + duration: 423.614894ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 735dcc8e-068d-a430-7c56-c5059ee34c68 + - cf730328-95ed-6b88-9de1-fe22ef251cd3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -608,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":["Global Account Administrator","Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":92,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:38 GMT + - Tue, 01 Aug 2023 08:32:17 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1e141046-16f7-425e-4901-edadbfb3debc + - 13f84483-fadd-4140-42fc-bd4d6524b6ff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 183.567014ms + duration: 192.925925ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d8db67a4-58ad-574b-ebe9-3f9d9cdd44aa + - 068cd9f9-7fab-8ac6-67e3-ad9d7146e1b1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:36:39 GMT + - Tue, 01 Aug 2023 08:32:17 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 174189d2-3561-44fc-7f72-4ab2146023f1 + - e643b5de-6b92-4f44-4f9b-a1c030ec16b3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 515.277442ms + duration: 297.764333ms diff --git a/internal/provider/fixtures/datasource_globalaccount_users.custom_idp.yaml b/internal/provider/fixtures/datasource_globalaccount_users.custom_idp.yaml index d14f4103..9df3595c 100644 --- a/internal/provider/fixtures/datasource_globalaccount_users.custom_idp.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_users.custom_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93f5e0e5-313b-d3b9-a9d4-c62d7dfd0338 + - 1b20f1da-d759-7f5d-b9f0-974ce10a6e2f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:53 GMT + - Tue, 01 Aug 2023 08:41:10 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ccba8119-9608-43d0-4b3b-3b16a83eef2f + - e5176d5f-c7f1-42ec-4d51-76339a1334f4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 455.305706ms + duration: 365.67081ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f0636c20-1dc6-bff9-ee19-5e90300f730f + - 3de6c740-d453-eaf6-febc-7b17d1774b84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@int.test","john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:54 GMT + - Tue, 01 Aug 2023 08:41:10 GMT Expires: - "0" Pragma: @@ -124,38 +124,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e36fdab8-c6e4-4f10-750a-38dc86018937 + - 5c432fe6-8963-4eee-5403-dba97ab597b5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 355.869401ms + duration: 239.837857ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 73ab00a5-0c28-24e3-70b9-eaf3ce620ee7 + - e65eb4cb-4148-f851-ec08-90fe35d6bb77 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -166,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:55 GMT + - Tue, 01 Aug 2023 08:41:11 GMT Expires: - "0" Pragma: @@ -191,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 35b253d4-091c-47c6-4820-51e0c2f91386 + - f5b68719-586f-439e-78c3-0c3afc21648a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 553.197303ms + duration: 346.053369ms - id: 3 request: proto: HTTP/1.1 @@ -215,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 67ba7c0d-cf10-71b8-a960-3dedd3957df2 + - 46ff1399-5ec0-8ce1-6264-3c418e176dfa X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -236,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@int.test","john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:56 GMT + - Tue, 01 Aug 2023 08:41:11 GMT Expires: - "0" Pragma: @@ -258,38 +260,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - d67a044c-2040-427d-77f6-23343d4dc016 + - 8d163273-98d3-452b-72de-5827fddfeaba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 203.018177ms + duration: 213.258076ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 99e79d74-b5fd-d049-3f9d-0deb12ff9b05 + - 9620b2a5-dce8-4037-5322-17243f8697b5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -300,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:57 GMT + - Tue, 01 Aug 2023 08:41:11 GMT Expires: - "0" Pragma: @@ -325,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0da306bf-bfc1-497f-7060-02b1feb944f5 + - 4e3f29e1-870b-4e56-7796-97559084ff24 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.747865ms + duration: 251.38831ms - id: 5 request: proto: HTTP/1.1 @@ -349,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0701f767-89e1-ad2c-1533-20db6efcbec8 + - d7912796-f962-b59e-335b-a2b3fc82ba93 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -370,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@int.test","john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:57 GMT + - Tue, 01 Aug 2023 08:41:12 GMT Expires: - "0" Pragma: @@ -392,38 +396,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - d6a0f211-8686-41d1-6ea0-fd56ffe7d04f + - d7eac594-bd0e-4e61-4da8-113b0092635d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 173.886912ms + duration: 288.957196ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f23597c0-638f-80ba-3381-dd33939e5f1c + - b70a035d-c321-90ef-bfa0-c82f72603a7f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:58 GMT + - Tue, 01 Aug 2023 08:41:12 GMT Expires: - "0" Pragma: @@ -459,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 80239289-cca5-44c4-47d9-33b20e6bba77 + - 4ad467da-b1d6-482f-6fcc-59c94701587e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 457.809991ms + duration: 199.436739ms - id: 7 request: proto: HTTP/1.1 @@ -483,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a46f3d2a-c76c-5ac4-c842-ff021520ebb7 + - dc116fa9-b002-366a-38d6-09eb4f002877 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -504,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@int.test","john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:59 GMT + - Tue, 01 Aug 2023 08:41:12 GMT Expires: - "0" Pragma: @@ -526,38 +532,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8697d8f-da12-4c43-5cb3-465ea40128fb + - 5dcf9071-e8b2-4593-4052-a1395da0fe2c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 206.049788ms + duration: 329.555417ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 43fd8c19-cc3d-ebb1-7351-4837944d48bf + - c435a19b-ced6-c187-ec85-7442dac8daeb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -568,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:28:00 GMT + - Tue, 01 Aug 2023 08:41:13 GMT Expires: - "0" Pragma: @@ -593,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 399a9c9a-44d3-4f14-5474-9b62fea6a732 + - c35707e3-c4a0-4481-7eab-88846e2660da X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 463.249068ms + duration: 280.869529ms - id: 9 request: proto: HTTP/1.1 @@ -617,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5fba4bc5-f36d-e756-febe-b9c6296c77d4 + - add59644-5e81-4de2-d4b6-d993a5d190f5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -638,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@int.test","john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:28:01 GMT + - Tue, 01 Aug 2023 08:41:13 GMT Expires: - "0" Pragma: @@ -660,38 +668,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f0862606-6236-44ef-4ee7-8d4a4dae7304 + - ca33c934-d03e-42c6-7d84-d3c3393a0916 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 499.408175ms + duration: 154.829325ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3bcf0ea8-eba7-4282-620b-d41cc2a682a9 + - 134c8bab-d3d8-00dc-d6ad-788dc144f153 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -702,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:28:02 GMT + - Tue, 01 Aug 2023 08:41:13 GMT Expires: - "0" Pragma: @@ -727,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d0d0953e-4fb6-4019-587a-fb261f9dcdc1 + - 166363c5-940d-4362-4b51-48f143d34e05 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 548.152965ms + duration: 321.788102ms diff --git a/internal/provider/fixtures/datasource_globalaccount_users.default_idp.yaml b/internal/provider/fixtures/datasource_globalaccount_users.default_idp.yaml index 14f76d31..f99bf407 100644 --- a/internal/provider/fixtures/datasource_globalaccount_users.default_idp.yaml +++ b/internal/provider/fixtures/datasource_globalaccount_users.default_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d4a2d8f9-8261-d45d-4191-e4e3181b3e3e + - 06fddc3d-1e5c-9579-858c-8edce4f26c84 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:43 GMT + - Tue, 01 Aug 2023 08:41:05 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 478e9c78-217d-472d-7855-1665f68e5625 + - 6a61fa04-efbe-47ee-6bfb-9d9a1e5854e3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 673.102536ms + duration: 863.173741ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 440c4940-d92f-bca5-e041-4603755dd475 + - d970b905-8c6a-b5d6-5b5f-88eafc80f92b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["jack.doe@int.test","john.doe@int.test","jenny.doe@test.com"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe+3@int.test","john.doe+4@int.test","john.doe@int.test","john.doe+5@int.test","john.doe+6@int.test","jenny.doe@test.com","john.doe+7@int.test","john.doe+8@int.test","john.doe+9@int.test","john.doe+10@int.test","john.doe+11@int.test","john.doe+12@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:44 GMT + - Tue, 01 Aug 2023 08:41:06 GMT Expires: - "0" Pragma: @@ -124,38 +124,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3bca1d54-b38a-4e3e-7377-f579000282a0 + - e3f77089-8242-478a-6d37-3b978545f7a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 314.4378ms + duration: 464.170048ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a995766b-d7a8-f0d8-c2c8-6868ff021883 + - d2abb353-6704-6bd8-7b11-71a8dd09a5b9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -166,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:45 GMT + - Tue, 01 Aug 2023 08:41:06 GMT Expires: - "0" Pragma: @@ -191,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1521459d-8f6a-4102-78ca-19bbf55e3f70 + - 7a0c667f-194e-4431-4645-68da7a236c56 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 484.971857ms + duration: 284.047639ms - id: 3 request: proto: HTTP/1.1 @@ -215,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4d23874f-455e-8ca1-4de4-c6397f71e230 + - e70727f1-9a80-1282-82f8-ba5b134d5302 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -236,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["jack.doe@int.test","john.doe@int.test","jenny.doe@test.com"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe+3@int.test","john.doe+4@int.test","john.doe@int.test","john.doe+5@int.test","john.doe+6@int.test","jenny.doe@test.com","john.doe+7@int.test","john.doe+8@int.test","john.doe+9@int.test","john.doe+10@int.test","john.doe+11@int.test","john.doe+12@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:46 GMT + - Tue, 01 Aug 2023 08:41:07 GMT Expires: - "0" Pragma: @@ -258,38 +260,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 25941cb2-6fa9-4d5e-6a3f-56c2324cbf5f + - 11c5d55a-26b9-48e5-729f-eed90116963a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 335.692869ms + duration: 227.503298ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c67e288a-bc87-b9cc-6c7e-ddd80dc19018 + - 82fdabf0-3c6c-63df-d129-98df7a32bf82 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -300,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:47 GMT + - Tue, 01 Aug 2023 08:41:07 GMT Expires: - "0" Pragma: @@ -325,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9d2b4234-5376-4269-43ac-bf14e41b7890 + - f8a6227f-5674-4005-6c4c-179b821772c4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 519.474299ms + duration: 389.147821ms - id: 5 request: proto: HTTP/1.1 @@ -349,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed5f3f61-6d44-c2ef-4432-60afa14ced7b + - f215729d-7d1e-ecf9-b864-5b1920c0c45c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -370,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["jack.doe@int.test","john.doe@int.test","jenny.doe@test.com"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe+3@int.test","john.doe+4@int.test","john.doe@int.test","john.doe+5@int.test","john.doe+6@int.test","jenny.doe@test.com","john.doe+7@int.test","john.doe+8@int.test","john.doe+9@int.test","john.doe+10@int.test","john.doe+11@int.test","john.doe+12@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:48 GMT + - Tue, 01 Aug 2023 08:41:07 GMT Expires: - "0" Pragma: @@ -392,38 +396,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 00bcef59-fe33-46e6-452b-d538d48973d5 + - 57d08921-c6d6-4a29-529d-c63a04ebf2cd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 218.658664ms + duration: 258.496392ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a171683-b255-7960-23db-2d87f8095d4d + - 6af40d1b-4bc9-42b5-b0dc-bd1209db4118 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:49 GMT + - Tue, 01 Aug 2023 08:41:08 GMT Expires: - "0" Pragma: @@ -459,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2ea823df-9199-4623-5eab-737a70c25f7f + - be2b5a3d-e1af-4de0-483c-145b9990662f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 581.752182ms + duration: 309.621344ms - id: 7 request: proto: HTTP/1.1 @@ -483,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 40feed15-4140-34d1-4794-f7813c442103 + - 099283bb-aafe-6db4-82f5-1497fc4986ab X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -504,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["jack.doe@int.test","john.doe@int.test","jenny.doe@test.com"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe+3@int.test","john.doe+4@int.test","john.doe@int.test","john.doe+5@int.test","john.doe+6@int.test","jenny.doe@test.com","john.doe+7@int.test","john.doe+8@int.test","john.doe+9@int.test","john.doe+10@int.test","john.doe+11@int.test","john.doe+12@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:50 GMT + - Tue, 01 Aug 2023 08:41:08 GMT Expires: - "0" Pragma: @@ -526,38 +532,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - b774d2a5-4d2e-4613-4647-6bb11ce222ef + - 58630153-9a1c-4836-48ee-4bbdc6ed3e2a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 263.624387ms + duration: 247.256733ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 26328cb1-bdf6-3f4b-3d26-ef885a12578c + - db57cfad-39cd-6695-65bf-c246c0f62f83 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -568,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:51 GMT + - Tue, 01 Aug 2023 08:41:09 GMT Expires: - "0" Pragma: @@ -593,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9ae0aea7-5580-40e7-4391-4c4eb50d4139 + - 87cacb58-a77b-421d-7ff6-6e239693b7ef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 393.715745ms + duration: 325.096298ms - id: 9 request: proto: HTTP/1.1 @@ -617,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - abb7785f-22e2-633e-a125-0b1f40498af0 + - 7b197f94-8fe9-75f6-d627-ecf9d1ceefaf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -638,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["jack.doe@int.test","john.doe@int.test","jenny.doe@test.com"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe+3@int.test","john.doe+4@int.test","john.doe@int.test","john.doe+5@int.test","john.doe+6@int.test","jenny.doe@test.com","john.doe+7@int.test","john.doe+8@int.test","john.doe+9@int.test","john.doe+10@int.test","john.doe+11@int.test","john.doe+12@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:51 GMT + - Tue, 01 Aug 2023 08:41:09 GMT Expires: - "0" Pragma: @@ -660,38 +668,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3aea212f-a311-4941-6c4f-124f66a0b0ae + - ad835700-f96f-4423-478d-4fe8f4714f4d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 218.143041ms + duration: 269.25564ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e8979a07-573e-03d3-bbef-7d7efa60abb5 + - 48f5b7f9-776e-fb80-c3c8-3919ce64ab46 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -702,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 15:27:52 GMT + - Tue, 01 Aug 2023 08:41:09 GMT Expires: - "0" Pragma: @@ -727,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0fdd298b-0b2f-484a-689f-fb0db96d20ba + - 4af3793a-e1c6-4439-594b-5cb62db7c9ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 412.134124ms + duration: 245.745991ms diff --git a/internal/provider/fixtures/datasource_regions.yaml b/internal/provider/fixtures/datasource_regions.yaml index 7122fa01..4d2b1243 100644 --- a/internal/provider/fixtures/datasource_regions.yaml +++ b/internal/provider/fixtures/datasource_regions.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fd08b41c-7dc2-9d94-e1ce-363f7811721d + - 55bd136d-f881-c763-3d53-eb5994f5e2c5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:30 GMT + - Tue, 01 Aug 2023 07:33:13 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 187cdc1c-d75c-4384-42de-0a48206ee256 + - 25d60f02-997e-40e9-69ad-166fa42c2fc1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.487099054s + duration: 394.580658ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac03ae81-498d-8cd3-41db-fbb7e944d238 + - 2e490140-47bf-83cf-91dc-6d5c2944df7b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:32 GMT + - Tue, 01 Aug 2023 07:33:13 GMT Expires: - "0" Pragma: @@ -131,33 +131,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d3624784-d365-49bd-4b55-48ebc566b9aa + - 39333e4b-2cfd-426c-7fb3-efaf04412bf3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.425953ms + duration: 206.767374ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 60bd2686-050a-4325-9924-0d4e78ee6ad1 + - 90424803-169a-6546-ae67-e58bb4c6c64c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -168,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:34 GMT + - Tue, 01 Aug 2023 07:33:14 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2a702f08-b9ac-4482-7089-8d351e1312da + - d26d7af3-681b-4666-49f0-6f55eaec85da X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 627.284327ms + duration: 341.424185ms - id: 3 request: proto: HTTP/1.1 @@ -217,11 +217,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fcabfb90-eb92-a386-63df-524d8ee71992 + - 74c6b9ff-24e2-e741-4061-7d096efa459c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -245,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:35 GMT + - Tue, 01 Aug 2023 07:33:14 GMT Expires: - "0" Pragma: @@ -267,33 +267,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bc2bf0a8-e2d4-43f1-41f3-27a810975120 + - e9f02e3c-1494-4058-43ad-fa3ebf22c11d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 280.481287ms + duration: 333.561414ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1bbee823-04c9-ac86-56ea-2fcf2c476f91 + - 7247a7ff-84d8-54e6-9562-f932650bdc05 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -304,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:39 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d098f986-ee49-4056-6d4a-7fa070148f88 + - 958bb99f-635b-4401-7c4d-4125edcf82a3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 702.069314ms + duration: 252.847963ms - id: 5 request: proto: HTTP/1.1 @@ -353,11 +353,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00d7c126-6dfd-b96d-cce2-3f5574194cea + - 7d4dde95-e8d9-e2d6-3d5b-9b306575b5d4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -381,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:41 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Pragma: @@ -403,33 +403,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 23f2d8ea-6362-42e2-5082-cb0e1d51e185 + - 54f9129f-30b9-44ae-4c59-916303b9f6eb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 434.650492ms + duration: 206.350375ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2f7f5d19-f315-1002-78e0-cedf60fbcbce + - 166dc33c-5d49-bd08-362b-17e6a1927ed8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -440,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:43 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1e02358b-867d-4109-5923-1a49fd82d425 + - 418d5047-0564-4590-5423-1065d7dc0151 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 507.900187ms + duration: 293.856843ms - id: 7 request: proto: HTTP/1.1 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6b06dd96-6e55-2341-5c83-0a55a61eac0d + - 1cb220d1-1ff3-92f8-4881-f652fd1dfc52 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:44 GMT + - Tue, 01 Aug 2023 07:33:16 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 113bbf47-a287-4f9a-73ff-d1c4c67e05ff + - 7c6656c0-b6de-42a6-6dc1-7c88a5003b0d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 279.59992ms + duration: 210.29248ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6de0cb30-1ae7-3338-9318-03f348f2f490 + - cd59b2b9-e6a3-e16d-6b1c-6f406c9d8f07 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:46 GMT + - Tue, 01 Aug 2023 07:33:16 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 83921f54-6844-4fec-6818-ce659bca1869 + - defa30cb-198f-4e3d-78b2-a6ae1cde4958 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 629.754369ms + duration: 194.410986ms - id: 9 request: proto: HTTP/1.1 @@ -625,11 +625,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - af68a6fe-e7ff-2752-e24e-c803f5669d64 + - 3cec1ab5-1d7e-6313-cba8-a51e18a3650d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -653,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:47 GMT + - Tue, 01 Aug 2023 07:33:16 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a5a4e5c6-a702-4d15-63bd-0453cb2ab07e + - e6d01619-8e05-4214-67f9-befce7d91bdf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 280.335397ms + duration: 264.647141ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8ee84ab1-0761-57cc-0bf8-98b2d1c87026 + - 0d776a12-5ecc-f691-bb13-da7443f4f820 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 14:05:50 GMT + - Tue, 01 Aug 2023 07:33:17 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e75c1cf8-a1ea-4f67-73d4-601b99843eca + - 8537f326-1ae4-42cf-5ad8-6f6f04258649 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 560.617225ms + duration: 220.365123ms diff --git a/internal/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml b/internal/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml index 6fe2635b..e45a204c 100644 --- a/internal/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml +++ b/internal/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b2d59946-c8ef-0697-3d32-f7f4675eec5b + - 2f496c4a-6d18-c0de-df69-37d291321937 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Fri, 23 Jun 2023 11:30:56 GMT + - Tue, 01 Aug 2023 12:05:25 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e2235b99-827c-4dfa-4aa5-a4870aef3ff9 + - 7dd197cd-a15e-43fd-4f78-14ae20fce4f9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.160024816s + duration: 250.218072ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 43b4a303-cbe1-54e5-ac6d-9dbfcb929ea1 + - bcc68a65-5961-9880-d211-c7407494873b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 23 Jun 2023 11:30:58 GMT + - Tue, 01 Aug 2023 12:05:25 GMT Expires: - "0" Pragma: @@ -131,9 +131,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8d41408a-d0c1-4e49-6547-f692cf85b0a2 + - f667a8de-ac71-4219-7a0c-765c43c2263d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 533.29861ms + duration: 213.944601ms diff --git a/internal/provider/fixtures/datasource_subaccount.yaml b/internal/provider/fixtures/datasource_subaccount.yaml index 6f9fab15..239c7c50 100644 --- a/internal/provider/fixtures/datasource_subaccount.yaml +++ b/internal/provider/fixtures/datasource_subaccount.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 653bd9f5-fa88-9694-6da3-2cf808325762 + - d9b5cea1-7135-15af-da6e-57dd61394987 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:51 GMT + - Tue, 01 Aug 2023 12:05:20 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a8b36a68-c9b7-46af-74b5-c239a84e3981 + - 8d2344fe-6c9f-4ce7-574c-2816a54718d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 964.853481ms + duration: 531.983904ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 39a6d130-5ee0-3ab4-ca1c-cfea51fe5c04 + - 1ad02662-cd3e-6164-74be-4b1f2af3ebe4 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -96,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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.","createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' + body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 12:05:21 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ee5c3988-7074-4f03-6350-b591a0b18bdf + - 509ce3a7-b263-476f-6db9-e81ef9fe45f7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 277.235044ms + duration: 370.721089ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d31b6cc7-807f-08db-fd8c-e92ce5e77848 + - 9f47d055-8c02-61a0-a444-7ffb3dc3df41 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 12:05:21 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7b5c23d5-9989-419f-587e-d090b6746cb1 + - be6711d8-860c-4f0f-499b-3585b8fe9abe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 348.50626ms + duration: 267.843989ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 11463866-8ba5-d1c4-129d-5124fba230d1 + - cff90227-baf0-1b01-798e-00146045f120 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -224,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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.","createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' + body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 12:05:21 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f26f71d6-2220-4573-7c21-75cc268ba6db + - 8ad2e05a-e114-400a-5692-054f93e67010 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 268.135306ms + duration: 204.604526ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a2b58ba-e67a-0a11-f219-b50736ddba37 + - bd8b60c0-2a87-192b-5d55-5c31a822c3e8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:54 GMT + - Tue, 01 Aug 2023 12:05:22 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 99249c68-5345-4e30-7c8c-89cb1b41401b + - 424e5636-2d57-4ea6-6636-51ed29bff296 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 320.640409ms + duration: 307.800663ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8a728cd9-10e0-9fe6-305f-a7f7d4ab922c + - a99445ec-af77-f03f-c7cf-ac9c65779aab + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -352,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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.","createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' + body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 12:05:22 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3725b12d-469c-4fa5-53d6-fd4990508a58 + - 294a6c8f-a1b3-4291-5609-73ffab4d2b88 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 203.960655ms + duration: 247.123195ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6314e77a-16a1-aefb-6f31-14a314a6321b + - 65444dd0-0d29-07f0-b4fa-79f6ca8d6f27 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 12:05:23 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 655a3477-781d-4b6e-5e29-b56b560b6ce2 + - 0c20a97d-0c54-4c0d-5e5d-0f1f39c7a90b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 466.29141ms + duration: 322.028612ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d56bf076-f17d-8e24-9c6a-7ffb81b1b153 + - 5451cda7-baeb-605f-fb88-f3212bddb315 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -480,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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.","createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' + body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 12:05:23 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 95007511-460e-4fa2-79d8-e9bffc948049 + - a1046d17-1129-4543-58e2-91e16f05443b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 184.562969ms + duration: 186.641189ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d49951a1-b991-bef0-4cae-69c7c081e5c9 + - c96764ea-0be4-4081-9c46-6f4f79e08947 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 12:05:23 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c581c4f7-51ff-4937-7be7-f349880881e6 + - 7a477b35-55b0-4488-5c00-ac852fa69503 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 336.842199ms + duration: 280.650043ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5543d5df-d693-90f9-28ae-d283d3d11d98 + - 694edafe-8ab1-de44-9183-c841bec517a2 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -608,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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.","createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' + body: '{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 12:05:23 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0170fc48-f646-48a5-74d0-6379a02aa6c8 + - 4ea02489-1f64-49ad-702d-76dfbebb657c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 182.344834ms + duration: 223.26528ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 22f565c0-4bbd-d18f-7c99-aa160abaab5a + - 2fd05b74-4d1b-b0e5-ad28-617f0fb98f38 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 12:05:24 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2325bdf0-052f-444d-679a-22dfcec004d3 + - 789bf7c3-41bb-4d7d-5e8d-0228db6aaf06 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 309.783735ms + duration: 284.919258ms diff --git a/internal/provider/fixtures/datasource_subaccount_apps.yaml b/internal/provider/fixtures/datasource_subaccount_apps.yaml index 055acbf8..ce64beb5 100644 --- a/internal/provider/fixtures/datasource_subaccount_apps.yaml +++ b/internal/provider/fixtures/datasource_subaccount_apps.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e94d2a59-7b02-0b84-7022-b673d91c0d17 + - a94d6efa-e2c4-a99c-2e5d-4e1eee160c1b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:10 GMT + - Tue, 01 Aug 2023 08:26:19 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f7d28106-d728-426e-71a9-3c92bed3455f + - b47b4347-9254-49ba-4398-e7801ca915d9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 574.3785ms + duration: 445.480234ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 898ae207-fde5-f524-a5cc-61f1d7d0e38f + - 0554accb-578a-c64a-807f-ee4ff0b3206c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:54:10 GMT + - Tue, 01 Aug 2023 08:26:20 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a3cdac6e-4b83-4eb2-6b19-8aa2c016c7bb + - 13270571-63c8-4fc2-4ec1-8011cb50ac28 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 231.34ms + duration: 339.24114ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 898ae207-fde5-f524-a5cc-61f1d7d0e38f + - 0554accb-578a-c64a-807f-ee4ff0b3206c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:11 GMT + - Tue, 01 Aug 2023 08:26:20 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f1792adc-a91a-4867-541a-6745d26b7ab7 + - ea5f7d93-66d9-43c4-6a26-923983b22cc5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 274.2116ms + duration: 350.481374ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7e40f2de-8ab6-822c-4e05-a2edf04cd257 + - 01ccd96f-8447-888e-8a34-bcb4be59e91b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:11 GMT + - Tue, 01 Aug 2023 08:26:21 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c7ddaf24-74cc-485f-4470-a86436244949 + - 3e059ac8-a1c9-497a-6b4d-a6b25b31875a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.5209ms + duration: 310.452453ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4cb5335b-57fe-81e2-4941-812e57e3d1bc + - b0135f14-df80-bf9e-8fee-016bf76b7454 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:54:11 GMT + - Tue, 01 Aug 2023 08:26:21 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - bfa0ec21-e3f4-4b22-49ca-fdcdd33525a4 + - b1d08173-4f84-4d9b-5173-cb6aac031533 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 174.378ms + duration: 252.582296ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4cb5335b-57fe-81e2-4941-812e57e3d1bc + - b0135f14-df80-bf9e-8fee-016bf76b7454 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:11 GMT + - Tue, 01 Aug 2023 08:26:21 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9e5f5dad-7b47-4382-4113-5985afb973b1 + - 6d3c5283-a4b9-4640-5eb8-db8bfe52ade3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 162.2161ms + duration: 236.002784ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 280eafd6-0e1a-ed47-74d2-b138ed8202e1 + - d925f7be-fb6c-245e-dfa5-bdb01d622698 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:14 GMT + - Tue, 01 Aug 2023 08:26:22 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eef6c973-0580-457c-72d6-402d617aacf2 + - 015f241d-c356-4dcb-5885-ca578e72bb9b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 2.3948741s + duration: 380.099307ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31b210d6-b42a-1087-6f98-8f74bf731cdc + - 7fff3b56-da24-76ae-d008-49266ae819d0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:54:14 GMT + - Tue, 01 Aug 2023 08:26:22 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d5a7ae6b-fed1-4223-47ca-071a115919d9 + - 694ca6cc-1057-4ac6-5ad5-55fe63e6d8c0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 202.6793ms + duration: 164.097139ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31b210d6-b42a-1087-6f98-8f74bf731cdc + - 7fff3b56-da24-76ae-d008-49266ae819d0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:14 GMT + - Tue, 01 Aug 2023 08:26:22 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 76f497a4-db0f-489f-4fa0-d82f889176a2 + - b7f6b924-d9ef-4728-4cd2-45ec6f4d8b21 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 148.3039ms + duration: 149.209718ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 06ff1ba7-53ca-e2e5-ce77-e69c7b1439be + - d22f11ab-7849-b942-2d60-667c0810862c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:15 GMT + - Tue, 01 Aug 2023 08:26:23 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d07553de-a6c1-40d7-50d8-5f58f1c35dc4 + - e5f1073e-7ac9-4484-62f6-c192f06c503a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.8262ms + duration: 522.880904ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0cc918d9-ce42-3e94-b3d5-e390c53cbb75 + - ff199196-4354-7562-9ec0-63a1ffaca0a0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:54:15 GMT + - Tue, 01 Aug 2023 08:26:23 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - beef1f8d-cf85-47e2-53c1-f894dd05a70c + - 5dc24635-4767-484f-450f-a3cac95082f2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 301.0897ms + duration: 197.259561ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0cc918d9-ce42-3e94-b3d5-e390c53cbb75 + - ff199196-4354-7562-9ec0-63a1ffaca0a0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:15 GMT + - Tue, 01 Aug 2023 08:26:23 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 16696b4d-ee42-42a6-53d2-218d72ae5150 + - 8b1708f8-015d-4688-67c3-469a8a22a25c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 161.3126ms + duration: 193.528328ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a642e086-406e-5d41-ab46-51e3f43e15e3 + - 6387c21f-f8d9-bb45-c212-7676658a2060 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:16 GMT + - Tue, 01 Aug 2023 08:26:24 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 35c819df-b0a8-47c1-6e8b-bdd5ec47bc4c + - 8a87cbcd-28e4-4d81-6997-441a80713b54 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 406.5304ms + duration: 320.726701ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b21d4be-d67e-4adb-dccc-c1535ec7dce1 + - 5947d1f4-f9c5-38d4-01d0-18aa95f6f36b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:54:16 GMT + - Tue, 01 Aug 2023 08:26:24 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b196f0f4-1553-4600-79d2-d210e000af96 + - e99dba8b-813c-4469-5f03-816a59f1c87f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 234.0366ms + duration: 177.275422ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b21d4be-d67e-4adb-dccc-c1535ec7dce1 + - 5947d1f4-f9c5-38d4-01d0-18aa95f6f36b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:16 GMT + - Tue, 01 Aug 2023 08:26:24 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d69672a0-fca0-4794-53d7-83a8b28e0a46 + - 93b3479c-b1f7-4f10-47e0-7fbb02755499 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 293.5756ms + duration: 208.447324ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d9dc457d-755a-9daf-c318-74b1bebf6aff + - 4429df5c-f6e7-a14b-93fe-e2bcbb3bfba8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:54:17 GMT + - Tue, 01 Aug 2023 08:26:25 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 118cdbc4-2b5e-4496-7717-3f0cf0b8db1f + - f2055ef6-a789-4528-4cd4-ef11b3956284 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 380.7298ms + duration: 385.758031ms diff --git a/internal/provider/fixtures/datasource_subaccount_apps_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_apps_by_id.yaml index e65f9d16..12c9d842 100644 --- a/internal/provider/fixtures/datasource_subaccount_apps_by_id.yaml +++ b/internal/provider/fixtures/datasource_subaccount_apps_by_id.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 39c16216-b7bb-c7da-4f92-ed778977f1db + - dbe336a4-d9d3-401e-6e8b-70103e123f62 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:35 GMT + - Tue, 01 Aug 2023 07:33:12 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e3bf2aa7-2c8c-447a-5996-155632feef7a + - 667c811a-aa55-466f-630e-413d6adee344 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 571.9312ms + duration: 365.778312ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e765e03e-1b3d-4d61-127e-bb7f4ac4ae7d + - 4e1d4bc7-4f00-c46b-9f05-7d963b15109d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:22:36 GMT + - Tue, 01 Aug 2023 07:33:13 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ff24de94-50a0-448f-7020-65e3c35b4848 + - c4dea1ee-805a-457b-7fa7-31868d9d7f04 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 242.9552ms + duration: 207.84902ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e765e03e-1b3d-4d61-127e-bb7f4ac4ae7d + - 4e1d4bc7-4f00-c46b-9f05-7d963b15109d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:36 GMT + - Tue, 01 Aug 2023 07:33:13 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7c053a11-c0ec-4491-69ba-38f2e711852d + - 9eca04de-e95c-464d-47e2-d7815da3fec4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 236.3919ms + duration: 144.769565ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 428729ba-818d-5bf2-9770-601a1a91e4e4 + - f328b21c-4a3e-f21e-3216-557012c7c77d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:36 GMT + - Tue, 01 Aug 2023 07:33:13 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8bd6e994-cae1-43e3-65bd-f9f4f26d189b + - a110f317-96fb-4578-67e9-a40326ee1c37 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 342.809ms + duration: 289.814941ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ebc5743-c3c9-c626-a3be-de79a4955c1c + - beccbb1c-96c6-9180-c660-95703f97d2b4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:22:37 GMT + - Tue, 01 Aug 2023 07:33:13 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6fb9b5a5-5c1e-4f53-573f-731fb0214410 + - c3541f66-6e7d-4494-4560-781072379795 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 287.2377ms + duration: 308.712133ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ebc5743-c3c9-c626-a3be-de79a4955c1c + - beccbb1c-96c6-9180-c660-95703f97d2b4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:37 GMT + - Tue, 01 Aug 2023 07:33:14 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a5852d92-154e-483d-40e4-8de50f3d80d8 + - 6a9baaa2-eaf1-44c7-66ee-1fe384cb7b93 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 167.1228ms + duration: 127.603229ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 304f73fe-b492-096b-9dfc-d53c6b348b38 + - fa5092c8-7200-dafb-613b-45fc7a8b7861 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:37 GMT + - Tue, 01 Aug 2023 07:33:14 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 878523ec-b247-4195-50c0-b419841e050d + - 6ffe9f1f-8567-49d7-61e6-cbb047fe188d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 342.6087ms + duration: 216.110738ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7d288479-a68f-00f6-750c-722c09ba153d + - 3d499e38-810e-8142-14ec-92f838f26566 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:22:37 GMT + - Tue, 01 Aug 2023 07:33:14 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 340813e8-0ae8-4b38-4477-3b1a8e0fde2b + - 35c70a0d-2b5a-42f3-6378-b45be615202e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 167.3869ms + duration: 152.442894ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7d288479-a68f-00f6-750c-722c09ba153d + - 3d499e38-810e-8142-14ec-92f838f26566 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:38 GMT + - Tue, 01 Aug 2023 07:33:14 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - da55dc6c-a1a3-4e2a-781d-522b42ae378d + - 3402f189-c842-4a4d-4c02-3f7a4692dee1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 147.4663ms + duration: 126.886347ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fc23dbbe-3abd-af4a-82e5-3b5f89d9689b + - c06da3da-f789-0ef7-2a98-1875fa08b880 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:38 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - abd2df7b-dc32-4f86-564c-3917cec42499 + - 33c90af3-2bd4-48b6-6201-a46b76a752b7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.4855ms + duration: 190.258738ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 466213f4-b341-473f-89ec-634bb62bcd96 + - 0e86f84b-5676-d840-7ff9-ba2600f2cc96 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:22:38 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c05d76b8-d4ba-4dfb-75bb-ea9dfb1bcfc1 + - 33af8c10-d183-4ccb-5a02-5564742a3831 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.4756ms + duration: 196.073777ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 466213f4-b341-473f-89ec-634bb62bcd96 + - 0e86f84b-5676-d840-7ff9-ba2600f2cc96 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:38 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b146d7a5-d523-4799-635f-06665dd686fc + - 41b57ab2-4990-4181-7fa6-18dd77d30a69 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 153.3447ms + duration: 141.650059ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 21857bdc-cb6b-0296-4091-32176c6732c8 + - af37d6de-17d4-1a30-2086-689cd8406586 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:39 GMT + - Tue, 01 Aug 2023 07:33:15 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a5e903e0-e05e-471e-5522-30b19ee726ac + - 411205c2-b736-4cd9-60b0-fff8d32fdb8b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.4101ms + duration: 289.186415ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44d873f1-d62a-a66e-8570-66b8db8a2f05 + - e043d513-3344-57dc-37b5-20cdc1b8ed0a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:22:39 GMT + - Tue, 01 Aug 2023 07:33:16 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c1e58ac3-a975-4634-6787-5d18d83eff54 + - 2f750b3f-120f-4f45-6436-b01fffad5981 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 195.385ms + duration: 152.937967ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/app?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44d873f1-d62a-a66e-8570-66b8db8a2f05 + - e043d513-3344-57dc-37b5-20cdc1b8ed0a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:39 GMT + - Tue, 01 Aug 2023 07:33:16 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b76997f5-a6f6-4c95-6fc1-001cf8c44a42 + - 978837e1-0a3e-44cf-6eb4-8e2dc251aae6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 201.4683ms + duration: 123.363764ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fd037093-9bf8-c678-6250-9a1cfe55c076 + - 88ca962a-e874-4503-c92d-320f4f09441e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:22:40 GMT + - Tue, 01 Aug 2023 07:33:16 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8061bbe-753c-4324-53bb-87cc0ffc02c6 + - c0da3578-1789-4bcc-76b3-c56216760e26 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 355.2066ms + duration: 267.650765ms diff --git a/internal/provider/fixtures/datasource_subaccount_entitlements.yaml b/internal/provider/fixtures/datasource_subaccount_entitlements.yaml index 5e533379..601b1b97 100644 --- a/internal/provider/fixtures/datasource_subaccount_entitlements.yaml +++ b/internal/provider/fixtures/datasource_subaccount_entitlements.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 826e05da-cb33-f54c-a195-17b531eff109 + - 2797adfb-1815-a683-739b-2effca64570a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:29 GMT + - Tue, 01 Aug 2023 08:24:39 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7a8219e0-2fcc-4738-5230-bb84ce20a669 + - 98f17e5b-523e-4ede-4303-356701a71dbf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.014770353s + duration: 429.651914ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cabf8fd5-3d39-8991-f629-8a7dffbb9cda + - a7601ddf-ec36-276b-da11-23b969d2ba36 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -96,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}}],"assignedServices":[{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":2,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-active-users","displayName":"additional-active-users","description":"Additional Active Users","uniqueIdentifier":"sap-appgyver-ee-additional-user","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-additional-user-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Additional User","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2,"parentAmount":3,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:31 GMT + - Tue, 01 Aug 2023 08:24:39 GMT Expires: - "0" Pragma: @@ -118,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7ac84d02-936f-4036-6a87-f7f1e97d0e8d + - ddec3735-9ca1-4c2e-4815-6665adad40f8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 738.361721ms + duration: 615.055131ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 83ed73f9-f4d6-386f-d257-ffd4a5938848 + - a152608e-8c0f-39ff-4c79-ccd5e50f45aa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:32 GMT + - Tue, 01 Aug 2023 08:24:40 GMT Expires: - "0" Pragma: @@ -183,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ed9d865a-6160-415b-621e-b185f044b16f + - 0ceeea59-4d28-4752-4df6-7e7a1f6d34be X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.817755ms + duration: 249.422352ms - id: 3 request: proto: HTTP/1.1 @@ -206,8 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f9e4ffbb-a533-7d2b-1d53-22e1137c44ef + - f7d54f92-e043-e103-cc4a-c63d791319ed + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -224,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}}],"assignedServices":[{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-active-users","displayName":"additional-active-users","description":"Additional Active Users","uniqueIdentifier":"sap-appgyver-ee-additional-user","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-additional-user-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Additional User","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:33 GMT + - Tue, 01 Aug 2023 08:24:41 GMT Expires: - "0" Pragma: @@ -246,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0cfb7c96-73bc-4da8-516a-3fbe1eb5e6c7 + - 4c4f8922-c4bb-48ea-6811-0efd69acb929 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 638.934162ms + duration: 748.838466ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9ef4e6ab-a7b2-c368-dacd-d3a9146a6066 + - 2a1089b5-914f-2b40-af09-9b5e1d104083 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -286,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:35 GMT + - Tue, 01 Aug 2023 08:24:42 GMT Expires: - "0" Pragma: @@ -311,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e5347d2b-e3ee-4835-5f50-86669aa185fd + - 005842cd-4d38-4210-53fb-1bfef158bde1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 411.597737ms + duration: 665.369003ms - id: 5 request: proto: HTTP/1.1 @@ -334,8 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c56b5605-b35d-97f1-30af-1dd4a68d0edb + - 91d86fcc-33e8-2adf-9281-70bc8530c56d + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -352,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}}],"assignedServices":[{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-active-users","displayName":"additional-active-users","description":"Additional Active Users","uniqueIdentifier":"sap-appgyver-ee-additional-user","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-additional-user-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Additional User","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:36 GMT + - Tue, 01 Aug 2023 08:24:43 GMT Expires: - "0" Pragma: @@ -374,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 118a11e4-dc1f-4f5a-6506-002ac6b3d56e + - c43905d7-2edc-487d-593c-25149191038b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 570.511528ms + duration: 787.222835ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 27beba79-e32c-5441-d6de-a4a747cc2e35 + - 1708fdb6-7fb2-c576-7e11-b529379e5907 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -414,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:38 GMT + - Tue, 01 Aug 2023 08:24:43 GMT Expires: - "0" Pragma: @@ -439,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8eaf1dd1-4734-4129-6ebc-32012acaee82 + - 2dc03943-b99e-4949-6eda-54ab8308054a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.640463ms + duration: 299.647672ms - id: 7 request: proto: HTTP/1.1 @@ -462,8 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - be168457-293b-7528-045a-9003fea7c322 + - 42319e1d-4b8f-6ebb-2b66-a8df9e5018a2 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -480,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}}],"assignedServices":[{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-active-users","displayName":"additional-active-users","description":"Additional Active Users","uniqueIdentifier":"sap-appgyver-ee-additional-user","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-additional-user-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Additional User","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:39 GMT + - Tue, 01 Aug 2023 08:24:44 GMT Expires: - "0" Pragma: @@ -502,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e4b107a9-8ee2-415e-6cec-dd0ecd2b1aa3 + - ac5b7a8f-2556-49fd-6a26-aef41e4bc6b1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 590.039715ms + duration: 569.759659ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4333b34a-a39e-dcfb-8a71-88782b7031a9 + - 772d8d99-109d-8212-3f18-9de1baed9826 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -542,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:40 GMT + - Tue, 01 Aug 2023 08:24:44 GMT Expires: - "0" Pragma: @@ -567,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d309aabb-e692-4202-4145-e3dec1f0d42a + - 58e78470-16a4-4418-5695-347ada30c744 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 458.940829ms + duration: 333.356769ms - id: 9 request: proto: HTTP/1.1 @@ -590,8 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 89cba95b-b6bf-d63c-3bc5-6c01c4bc2048 + - 88e83274-ccf4-e623-389d-38d83d2b6c64 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -608,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"azure-openai-service-demo","displayName":"Azure OpenAI Service Demo","description":"A BTP-native wrapper API over the Azure OpenAI API.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default standard plan","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Default standard plan","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Use the plan for productive development in pre-configured dev spaces.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation-service","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"Kyma environment is a runtime you can use to build cloud-native Kubernetes-based applications by using microservices and serverless functions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"Kyma Runtime AWS","description":"Kyma Runtime AWS","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"gcp","displayName":"Kyma Runtime GCP","description":"Kyma Runtime GCP","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"azure","displayName":"Kyma Runtime Azure","description":"Kyma Runtime Azure","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog","displayName":"Audit Log","description":"Audit Log","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"SAP Advanced Event Mesh Validation service validates if the Solace VMR is provisioned by AEM or not.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"SAP Advanced Event Mesh Validation service","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"Usage Data Management Service","description":"Collect and analyze usage information for analysis, reporting, cost, and auditing","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation is a citizen development solution to adapt, improve, and innovate business processes with the low-code/no-code capabilities of SAP Workflow Management and SAP Intelligent RPA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Default plan for using Process Automation","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"This plan enables you to execute attended automation","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"This plan enables you to add an advanced user","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"This plan enables you to add a standard user","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-cn40-canary"}],"CFService":{"name":"process-automation","description":"Automate processes and tasks without requiring any coding skills","metadata":{"displayName":"SAP Build Process Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using Process Automation","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"This plan enables you to execute unattended automation","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"This plan enables you to add additional API calls","metadata":{}},{"technicalName":"storage","name":"storage","description":"This plan enables you to add additional storage","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions. Limits may apply. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway t","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"Tenant","description":"SAP Data Intelligence - Tenant plan","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWFjaGluZS1sZWFybmluZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+bWFjaGluZS1sZWFybmluZzwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjE2LjAyMyIgd2lkdGg9IjEuNzE0IiBoZWlnaHQ9IjUuMTQzIiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMjcuMTQzIiB5PSIxNi4wMjMiIHdpZHRoPSIxLjcxNCIgaGVpZ2h0PSI1LjE0MyIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjU3MiIgeT0iMTYuMDIzIiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyMy43MTQiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIyNy4xNDMiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzMC41NzIiIHk9IjM0Ljg4IiB3aWR0aD0iMS43MTQiIGhlaWdodD0iNS4xNDMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNC44NTciIHk9IjIzLjczNyIgd2lkdGg9IjUuMTQzIiBoZWlnaHQ9IjEuNzE0IiByeD0iMC43NSIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMzQuODU3IiB5PSIyNy4xNjUiIHdpZHRoPSI1LjE0MyIgaGVpZ2h0PSIxLjcxNCIgcng9IjAuNzUiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjM0Ljg1NyIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjMuNzM3IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMjcuMTY1IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNiIgeT0iMzAuNTk0IiB3aWR0aD0iNS4xNDMiIGhlaWdodD0iMS43MTQiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzIuNSwyMi4wMjNIMjMuNWExLjUsMS41LDAsMCwwLTEuNSwxLjV2OC45OTNhMS41LDEuNSwwLDAsMCwxLjUsMS41SDMyLjVhMS41LDEuNSwwLDAsMCwxLjUtMS41VjIzLjUyNkExLjUsMS41LDAsMCwwLDMyLjUsMjIuMDIzWk0zMSwzMS4wMTFIMjV2LTZoNloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSwyMy44NDZhNy42MDcsNy42MDcsMCwwLDAtMy43NDktNi42MTUsNy40NDEsNy40NDEsMCwwLDAtNS45MzctNy4xNjcsNy4wMTksNy4wMTksMCwwLDAtNS43NC0zLjA0M0E4LjkzMiw4LjkzMiwwLDAsMCwyOCw4Ljc0MmE4LjkzMSw4LjkzMSwwLDAsMC01LjU3My0xLjcyMSw3LjAxOSw3LjAxOSwwLDAsMC01Ljc0MSwzLjA0Myw3LjQ0MSw3LjQ0MSwwLDAsMC01LjkzNyw3LjE2N0E3LjYwNyw3LjYwNywwLDAsMCw3LDIzLjg0NmE3Ljc2NCw3Ljc2NCwwLDAsMCwxLjAyOCwzLjg4MUE3Ljc2NCw3Ljc2NCwwLDAsMCw3LDMxLjYwOGE3LjU3OCw3LjU3OCwwLDAsMCwzLjc0NSw2LjYxOHYuMDA5YTcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLDcuNEE3LjA2LDcuMDYsMCwwLDAsMjIuNDI3LDQ5LDguMzEsOC4zMSwwLDAsMCwyOCw0Ni44MzgsOC4zMTEsOC4zMTEsMCwwLDAsMzMuNTc0LDQ5YTcuMDU5LDcuMDU5LDAsMCwwLDUuOTM4LTMuMzY1LDcuNDcxLDcuNDcxLDAsMCwwLDUuNzQzLTcuNHYtLjAxQTcuNTc2LDcuNTc2LDAsMCwwLDQ5LDMxLjYwOGE3Ljc3NCw3Ljc3NCwwLDAsMC0xLjAyNy0zLjg4MUE3Ljc3NCw3Ljc3NCwwLDAsMCw0OSwyMy44NDZabS0yLjYyNSw3Ljc2MmE0Ljc3LDQuNzcsMCwwLDEtNC4wNTUsNC44NzEsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLDEuNzU2QTQuNzM4LDQuNzM4LDAsMCwxLDM4LjEsNDMuMTU4Yy0uMSwwLS4xOS0uMDI1LS4yODYtLjAzMmE0LjU1Nyw0LjU1NywwLDAsMS00LjI0MiwzLjI1LDUuMjU1LDUuMjU1LDAsMCwxLTUuNDg3LTQuNTQxaC0uMmE1LjIzMiw1LjIzMiwwLDAsMS01LjQ2NSw0LjU0MSw0LjU1Nyw0LjU1NywwLDAsMS00LjI0My0zLjI1Yy0uMS4wMDctLjE4OC4wMzItLjI4Ni4wMzJhNC43MzgsNC43MzgsMCwwLDEtNC41MjgtNC45MjMsNS4yNjQsNS4yNjQsMCwwLDEsLjMxLTEuNzU2LDQuNzcsNC43NywwLDAsMS00LjA1NS00Ljg3MUE1LjA1NCw1LjA1NCwwLDAsMSwxMS40LDI3LjcyN2E1LjA1MSw1LjA1MSwwLDAsMS0xLjc3My0zLjg4MUE0Ljc4LDQuNzgsMCwwLDEsMTMuNiwxOC45ODQsNS4yNiw1LjI2LDAsMCwxLDEzLjM3LDE3LjUsNC43MzcsNC43MzcsMCwwLDEsMTcuOSwxMi41ODFjLjEyNywwLC4yNDcuMDI5LjM3Mi4wNDFhNC41MzUsNC41MzUsMCwwLDEsNC4xNTctMi45NzZjMy41NzcsMCw1LjIsMS44ODcsNS41MDksMy43MDdoLjEyOGMuMzA4LTEuODIsMS45MzItMy43MDcsNS41MS0zLjcwN2E0LjUzNiw0LjUzNiwwLDAsMSw0LjE1NywyLjk3NmMuMTI0LS4wMTIuMjQ0LS4wNDEuMzcxLS4wNDFBNC43MzcsNC43MzcsMCwwLDEsNDIuNjMsMTcuNWE1LjI2LDUuMjYsMCwwLDEtLjIzMSwxLjQ4MSw0Ljc4LDQuNzgsMCwwLDEsMy45NzYsNC44NjJBNS4wNDgsNS4wNDgsMCwwLDEsNDQuNiwyNy43MjcsNS4wNTEsNS4wNTEsMCwwLDEsNDYuMzc1LDMxLjYwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-390"}],"visibility":"PUBLIC","serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_INTELLIGENCE"}],"CFService":{"name":"data-intelligence","id":"50150374-0759-4409-9666-8b9b1f2230a0","description":"SAP Data Intelligence","tags":[],"metadata":{"displayName":"SAP Data Intelligence","longDescription":"SAP Data Intelligence is the all-in-one data orchestration solution to discover, refine, enriche and govern any type, variety, and volume of data across your entire distributed data landscape. Deliver on the promise of AI with enterprise scale, trust, and transparency driving significant new business value and insights."},"bindable":false,"plan_updateable":true,"plans":[{"id":"89fd0189-4ac5-426b-8eb6-b16986ca6835","name":"enterprise","technicalName":"enterprise","description":"SAP Data Intelligence - Enterprise plan","free":false,"metadata":{"displayName":"Enterprise","bullets":["Configurable compute nodes and storage amount"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"commercialOriginId":null,"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"sourceEntitlement":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-capacity-units","displayName":"additional-capacity-units","description":"Additional Capacity Units","uniqueIdentifier":"sap-appgyver-ee-capacity-unit","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-capacity-unit-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Capacity Unit","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"additional-active-users","displayName":"additional-active-users","description":"Additional Active Users","uniqueIdentifier":"sap-appgyver-ee-additional-user","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-additional-user-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Additional User","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690875228171,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:41 GMT + - Tue, 01 Aug 2023 08:24:45 GMT Expires: - "0" Pragma: @@ -630,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a537009f-ff8a-4944-6065-200baaa86709 + - a910043e-bc4f-4661-7081-8596d3e71a1d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 791.451394ms + duration: 582.877278ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3c9d73bc-c229-b55a-f155-28168821f6de + - adfc211a-3fa3-d6ab-c1c2-fb13def58320 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -670,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 08:46:43 GMT + - Tue, 01 Aug 2023 08:24:45 GMT Expires: - "0" Pragma: @@ -695,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b505ec82-3798-435c-5b78-01240ad9dd71 + - 09334795-f1e0-4cd7-4cd6-b24a7c85a46e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 488.24176ms + duration: 208.382718ms diff --git a/internal/provider/fixtures/datasource_subaccount_environment_instances.yaml b/internal/provider/fixtures/datasource_subaccount_environment_instances.yaml index 1f2d401a..615c5393 100644 --- a/internal/provider/fixtures/datasource_subaccount_environment_instances.yaml +++ b/internal/provider/fixtures/datasource_subaccount_environment_instances.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 54c4d697-db24-5856-63c4-96bb74d9600c + - 40463959-ffe1-9c68-5bf5-f0298f5eae8b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:49 GMT + - Tue, 01 Aug 2023 08:16:42 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 431ff53c-c615-42d3-75ca-89123bb15932 + - a8faf2b2-20f1-4c83-467d-80e8af58abb8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.367191141s + duration: 461.765504ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0361fb7d-55cc-c3ae-cae8-cda23b44bf67 + - 4ddf67d9-63fa-83b8-25ba-76d064bd69c3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 16:39:51 GMT + - Tue, 01 Aug 2023 08:16:42 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 41cde965-7955-49b3-5349-c61a5a36e781 + - 154dab90-d106-45aa-7185-16472f032ee3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 318.046911ms + duration: 267.788056ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0361fb7d-55cc-c3ae-cae8-cda23b44bf67 + - 4ddf67d9-63fa-83b8-25ba-76d064bd69c3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:52 GMT + - Tue, 01 Aug 2023 08:16:42 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bb41a3b9-e89b-43a3-6a71-f3f19bd4c541 + - f4720d8e-3482-4e9f-6a29-07311767a22e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 920.662355ms + duration: 136.759811ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3b6d4348-9c4e-f56b-7ab5-8ec2cd22522d + - c33248af-704d-939e-6176-17db447ba541 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:54 GMT + - Tue, 01 Aug 2023 08:16:43 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cd45c3f4-2707-433b-51d0-73aece0efde2 + - b1d90cc8-625b-48e3-451c-f411d33f4ae8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 546.122788ms + duration: 238.887648ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5864bea9-b25d-63ae-8963-e58f8b4402a7 + - 86c036d3-b4d6-2635-3d80-60551e8ea0c6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 16:39:55 GMT + - Tue, 01 Aug 2023 08:16:43 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b07b0114-b1df-40a8-7200-8f6260af1a23 + - 8f1e250c-9698-4d2d-5d40-d5e2cb6b4e78 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 325.859772ms + duration: 188.110213ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5864bea9-b25d-63ae-8963-e58f8b4402a7 + - 86c036d3-b4d6-2635-3d80-60551e8ea0c6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:55 GMT + - Tue, 01 Aug 2023 08:16:43 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e5232e9d-ab0d-4ab6-6837-29061fc97412 + - 2738f724-5ebc-40a2-72a7-4cc9a43cf249 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 236.49604ms + duration: 121.057869ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6bd7dd4a-d68f-d06c-de81-36ed6ac9b5a1 + - de97e5f7-e35a-b9d6-14c5-75d7884a24dc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:56 GMT + - Tue, 01 Aug 2023 08:16:43 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - acb7f62c-5196-48a3-6e0f-700e07e2f8f7 + - 53319458-5077-487e-6e6e-bf813840dc9b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 473.554922ms + duration: 297.590971ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1d090c32-f346-7704-b631-c05904481a9f + - f5a7a2a0-8922-7299-aa09-dea1a17fa33e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 16:39:57 GMT + - Tue, 01 Aug 2023 08:16:44 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f4814b70-4f9b-454f-7075-daba043793ac + - 9754177a-9c09-45bf-61cb-29267e467fe6 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 191.793678ms + duration: 240.987282ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1d090c32-f346-7704-b631-c05904481a9f + - f5a7a2a0-8922-7299-aa09-dea1a17fa33e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:58 GMT + - Tue, 01 Aug 2023 08:16:44 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b6a58823-ebd0-41b8-71ab-fc994f0e5c9d + - 70ffe3ab-d6a8-4df9-6dd2-2bf4fb9f8c7f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 242.522345ms + duration: 139.665653ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 21df3b01-7ec1-af87-cd4f-a4f5242023d7 + - 4d34450b-92e7-5c70-921c-8fbd223c5573 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:39:58 GMT + - Tue, 01 Aug 2023 08:16:44 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 68d13420-9177-4483-76b6-5e4e664cac90 + - 2a02a084-2021-4cc6-5303-d86dcc2136bd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 479.780231ms + duration: 299.432451ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 13d6f946-fa12-0a81-4753-5d37d0bb375d + - 6e79292d-bd71-cac7-2bb7-7a8650f6b1ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 16:39:59 GMT + - Tue, 01 Aug 2023 08:16:45 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a821fb6f-242a-498a-5a90-61d4596710cb + - 5abe566f-e3b7-4d28-5895-7cb3ef04f8f9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 200.265133ms + duration: 251.393989ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 13d6f946-fa12-0a81-4753-5d37d0bb375d + - 6e79292d-bd71-cac7-2bb7-7a8650f6b1ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:40:00 GMT + - Tue, 01 Aug 2023 08:16:45 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 56130a1a-4b81-4a92-4194-5c772161f7c0 + - d2a330df-384d-4115-4a1f-d2a01e0fcfd5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 237.00757ms + duration: 149.515534ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3fe9e200-5884-528b-e720-7ae4baa717d3 + - 3cb077ea-fb82-06bc-3690-fb65646f5bf7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:40:00 GMT + - Tue, 01 Aug 2023 08:16:45 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - aa1af601-6743-4467-7e5f-ae044c96ba7e + - 76c2b817-a909-40fc-544b-4d8402644ae8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 504.193063ms + duration: 310.983805ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 544a4e19-05ff-26a3-fcb5-4d6947e7b509 + - fefab122-f34e-787d-3920-4d371c9bd15d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 16:40:01 GMT + - Tue, 01 Aug 2023 08:16:45 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 01342873-5a9b-4ae7-65d8-bc45a3300f4f + - a088e928-a826-4084-64ce-cfba41ad82b6 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 273.907454ms + duration: 219.645711ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 544a4e19-05ff-26a3-fcb5-4d6947e7b509 + - fefab122-f34e-787d-3920-4d371c9bd15d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:40:02 GMT + - Tue, 01 Aug 2023 08:16:45 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9e0fc08d-5842-4465-51ee-2b4c92efd297 + - 363a0ec9-8d0e-4755-64ab-05675f9aa697 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 154.083528ms + duration: 101.84713ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4229f9cb-2e8b-dc35-6f17-b0099674b40f + - 120d9eb1-0fb5-f4fe-ce90-d16b9d313d34 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 16:40:02 GMT + - Tue, 01 Aug 2023 08:16:46 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6aeec0cd-8f51-423f-423b-ad4cff8b4b3b + - 1abd0dcf-e0bc-4db2-5567-11259d23669b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 451.693421ms + duration: 226.439544ms diff --git a/internal/provider/fixtures/datasource_subaccount_environments.yaml b/internal/provider/fixtures/datasource_subaccount_environments.yaml index 5a765456..47b521bc 100644 --- a/internal/provider/fixtures/datasource_subaccount_environments.yaml +++ b/internal/provider/fixtures/datasource_subaccount_environments.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8119f67f-f271-c6b9-087c-7f3461b2fae5 + - 45f0f30f-434a-0b2e-bbfc-d44cbcc97b87 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:10 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - caf9c400-866a-4195-6154-d551665b2bab + - 9df0d1a9-8842-4937-6e1e-fdddebc0e980 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.536400176s + duration: 357.151415ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 714f247b-7c4f-b410-6e1d-869c99bdcdd0 + - 1b75eb56-2bb1-ba83-d892-81363c2e1c34 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 13:33:12 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c72eef9e-5d6b-496d-5226-4724672df650 + - cfd424f3-54bc-4fce-752f-abdb04f00b4f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 369.750317ms + duration: 155.464092ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/available-environment?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 714f247b-7c4f-b410-6e1d-869c99bdcdd0 + - 1b75eb56-2bb1-ba83-d892-81363c2e1c34 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"}]}' + body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:13 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6a31289b-2bbd-4db7-4811-13044ceea790 + - 17e9c2f4-8893-41eb-6ac5-48d3e12123d5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 611.962482ms + duration: 236.493066ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 427d78d1-2713-06cd-a922-319d3f03416f + - 53b81563-2566-bc4e-ffc3-3abdc25f1ef2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:15 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 22ecb1f0-387e-4b5a-4e39-f634da037441 + - d1f0609c-d041-4678-5620-253ab56dcbb3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 520.141675ms + duration: 305.938994ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ab5f8736-0bd7-1c30-0dbe-5c507d27e035 + - 08f3bcbc-6f9b-980b-9f22-d2235cf32d84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 13:33:15 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a28f181e-e207-4ceb-5b20-22871bc18bd8 + - 1902dd63-cd79-450d-7e01-66b97211a64b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 303.797889ms + duration: 142.414289ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/available-environment?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ab5f8736-0bd7-1c30-0dbe-5c507d27e035 + - 08f3bcbc-6f9b-980b-9f22-d2235cf32d84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"}]}' + body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:16 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 302becd5-fc3d-48bc-7fc1-74a4305e4de5 + - 0f5959ae-12d2-4dd2-7c2d-391a61954602 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 265.210143ms + duration: 142.103066ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6488891e-77cd-9d5d-e67f-4d42e00c6c70 + - 0cd5e8e5-0a2e-5e49-adeb-a63ab637001b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:17 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e01f188e-c616-47dc-5066-739a466a002b + - a6fe1317-d7bc-46aa-593a-b0cc7788a43a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 546.872567ms + duration: 292.598137ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 55c9b828-06a2-88d4-bcab-c53385cb80a1 + - 9b9fd61d-3e7e-ed7a-1a1a-1b1b5e85984f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 13:33:18 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - fa3fa4f3-f1d8-4c6a-5631-9a1a75f27f2f + - 258d2c42-a7b6-41bf-7e29-b43d93dab295 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 326.397617ms + duration: 149.210125ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/available-environment?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 55c9b828-06a2-88d4-bcab-c53385cb80a1 + - 9b9fd61d-3e7e-ed7a-1a1a-1b1b5e85984f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"}]}' + body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:19 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4cda55de-4be8-4864-699f-33428f25c239 + - e269fe67-9786-42ae-58f9-b9c3ff2c78a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 280.708396ms + duration: 168.124901ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ad90b6bd-e823-8bc2-bf07-cc603b8efc78 + - 0bcf43ab-e53e-0af3-b8da-e4c258ee1970 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:20 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 35029664-951c-453a-4b82-513a54b99c69 + - f571fb49-91c4-4a08-59c7-f29e48023cff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 439.326299ms + duration: 219.254801ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cb3d4e52-8a31-3670-cec1-0147dd28bf22 + - dee0d037-49e9-9502-01a5-485ccf87dbfe X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 13:33:20 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4e2bb581-5b78-464c-5150-3bde801d1eae + - ddb5ea16-2be1-4a11-512d-fd30f2f21eab X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 262.9317ms + duration: 184.324585ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/available-environment?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cb3d4e52-8a31-3670-cec1-0147dd28bf22 + - dee0d037-49e9-9502-01a5-485ccf87dbfe X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"}]}' + body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:21 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 60baadc9-051a-44be-6273-3150208321fa + - b49fdd72-bf1a-4007-70d1-ad721a895f5c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 246.586328ms + duration: 97.360625ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 948904f6-9343-e73a-8fab-11ec5a656903 + - 3ace7dd8-91f6-9169-1010-139a4e43f822 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:22 GMT + - Tue, 01 Aug 2023 07:33:11 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2f58729c-c71f-4dda-63d0-e8f97845a8d9 + - fe328df1-07e9-431a-705f-1e9f9fa2baa0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 378.614218ms + duration: 274.443876ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9cc81c4f-709b-dd5a-f18f-52a7cf825b4f + - a02c9802-7ecf-9d3d-b250-42df58d76a25 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 07 Jun 2023 13:33:22 GMT + - Tue, 01 Aug 2023 07:33:11 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d8d23491-6344-4f87-5dfe-9642f3fda379 + - 1c11b812-b970-4673-63c1-1441b7fcf164 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 197.766637ms + duration: 176.599537ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/available-environment?list User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9cc81c4f-709b-dd5a-f18f-52a7cf825b4f + - a02c9802-7ecf-9d3d-b250-42df58d76a25 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}"}]}' + body: '{"availableEnvironments":[{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false},{"serviceName":"cloudfoundry","serviceDisplayName":"Cloud Foundry Runtime","serviceImageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAYAAAAbvPRpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LjE2NDY0OCwgMjAyMS8wMS8xMi0xNTo1MjoyOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRDNDYwMzcyODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRDNDYwMzczODI0QzExRUI5ODlDOEYyMkM2Q0E5Mjk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEM0NjAzNzA4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEM0NjAzNzE4MjRDMTFFQjk4OUM4RjIyQzZDQTkyOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fOnPYAAA6vUlEQVR42uxdCZwcRbnv6Z6ZvTcXhByEcIX7cR/Z4yUmcilgAOUyoqiIIDyeCgpGhICCqIg8lMclT5Ajcsih4ZIjBvYKEDAoRAQMSQhHQpJN9p6+3v/rqZrU9vbMdM/UzM7sduVX6e7Zme7qr75/fUd99VXEtm1luEokElFGWznggANUGfdZsWKFNdpoN5y8KpaoEpaiAkMWsxfjGWEJQVM0oGRi2lmzZ4+1THMny7KqIGnHY/Scio8TqOlAQPeK47vr8N1Nqqr2qZq25oWlSzvzbUtYctSQQvWscECZOXPmVLzjgah74nIv1Gmo9ajbExBQ61DHM2BkKvScTahdDGAbULeirkX9J+p7AOGyjo6OdSMZQKWinoWgyREsY8aPV19YssTgnzU1N1c6ILDtQ0HTJtRmvN/u+KwG5/XRaFSl9yV6c5qL535oxenFz+m3hmFYOO8hEOH6HZy/Amn0V9M02yGRelpbWvpTUm7OnOiWTZuscgVPCJoyBA0ftTnTERMaAwO74fQI1M+iNqNOxHvF+LtxYKASc5v4SKNr4d39OgYsfj/2WxPnGs5VEVD8WTj9ELUF9QnUZT09PW/zdrvfIwRNCJqCq2BNTc2TwZcEkKNQ52maNtEtQVwql1rgZoqAUt0SCVKHALQY9Rn8uaW1teXDclTdQtCUOGi8RuPGxkayTU5B/Qza3gg1SIEtIXamVQSABAGSyukstLWNAejhtra2tzK9bwiaEDS+y8KFC1XUFPM0NDSQCvZNtPdEMN8MNnqXGkh8gQhS0WE+AOhtHB/FZ7e2t7e/m+7dQ9CEoAkkXQgsaOPZOD0TR/KEOaN1mYHFEzwkeZhKuRrXi1Dv5JKnVKVOCJoSAw0xSspmaW7e3rasM3F6MZhrsmCvlDNYPMHD7R4MBmTnXBdR1btbW1o2uGkSgqZ4BmpZGPqkknDmgN0yD4B5FGrML8FMk5kdYI1AeqmMES16R3pXemdcLQYNTuGShmgjK/RnpJRRLWnEkRSq2HS054c4/TKkS4XF9LBRNLBYxAs0nwR7jd79DlxfDXtndalInVA9G2bQiEzARtarycgX5jlG6+hqcbc1xg2KNrgcts6DpQCcEDTDCBre+bBdaqGOkHS5CICJ0QjL2jTq1REaOKCuqQCOjstfwta5GrZO93ACJwTNMIBG9AqxOZf/BVjmhtIlu9TBgPIsjheQh224vGshaIoMGpf9MhfPvh0j6a5lON9SdOAobH4HtKK5nXNh5zw/HOpa6D0rYhG9YwDMBQDMIgYYfZQZ+znzCNEKNKOJ3UVEQy5piLajjSAjXtKIM9xQyb6Pw09pZo/p6rEQE4GKTrYf8yz+AKraz900DtWzMgcN78yGxtmxiKJfh48uZCH1paaOlV04DqPjzdGKigtpiUQxVLVQPSuShKHwfQDmJoyQFzLCDzeD0vMt1g6LDR6pmXmvyn9HvxF/N4w848zpgKbnGQMD/0s0Hk2q2oiUNC6V7DZ07jeGI2aMraFJDU5uIPDAT1rGnIVO43mgJR9x3QvY2LPUIoNfZdHTt9tK7Pz2tqV6ISVOqJ4VCDSuScvL0Kk/LjJgUpEExFC8s9lkIYGDQvNpmfI7qO/hbz34W2cWZhmL79TgdGdUWg1Ky6ZpacJ4cUGb8J5KEd+VA+dK2DgL3X0QgqbEQeMCDBn9P2HGfjEAk1K1iImYK5vW9K9EfRSft6GuUTVts64rPTQq5/IQss9iMaXGMs1x6LudUWeiHoN7H4w/15FEGqZ4OXqfSwGc6wsFnDCFUwELC4v5kTDLX3DACGDpQn1TSS70ehCfrhbX6YsApzwDdE7r9jPdXPweA1snq6tQlwBI14Fnd8X5KXj2CTjuDfDUCeAp6Puz6AHyql0J2r8H4Dwc2jRlIGlSoTEoeKf7wcBTmWtULSSzqMlCYFmPj55Fvb+np2exe5R1RwrnOgpnuw/9vaam5nicnoZ6JC3FJjIQLQo8eFjMlb8OzzmtFUW2tAnVM4mg4YY/pUxCvz0MRjmcReoWiklSs+SGYfTiPX6L6/swwi6TDZJ8QIRRnxJ+fBF9fHY0Gq0uQvSDE6+G57wE8JxMKaVkzuGEoJEEGj6asRH2DoDmrAKqZKLhS9f34Dm30KjK23LSSScpjzzyyLCtevRqA5O+5+L0S0LbCwIeIdDzTkjcr/O+kUGP0KaRXACYr+FwFltQVRDA8PkUdN7rqNcqkfhDba1Jg54zBuqw0kFsA28TgRp2z0uKnXgC7b4UwNkfR7UQKhvdj4HyrOrq6hdx/L/QpikhScOZoqGh4RAwwmLcb1IhpAy3XRit7sTtF7jTIJVqFhd3+5gKewUxtRASI51eJG1w/Ai3P769vX25DGkTqmd5gkZYE1NpW9Yj6KRjC2HHCOoGpXxdCLvlt+UAlmzggb1DCUMWksOkUAMNo9tTEVU9RcZanDCMRpbOZJpno8OPZUau7PexaPkvOv4l8giJgGFqUNlkqOTt5eChd6F3onejdyzAgKgyVflYDGrnhOrZMEsawb28D+XuomXKhVAz2BqS53H/s1taWlaVazrXTFKHpam6De86lw08Ugcd5oZ+m3LGwbR6Mx9pE0qaPNUyRsQLaI1HIQDD5l7ug2pxOgGGByOOhK0rxJzOlCgwGot9Hu96Jw/7kUlG6hvqI+or/uxyz25TdpLGNYn5JO5RJ/sdmFv2TgDmPJrNL2QQoh8GKiRQXbbhzeSy35aIR14/o4+6cDwB0mZprnM3oSMgB9CkvGXJ9TEPooPnSTZiHePVMIw/x2Kx01944YVemYChe70x73zn3LjqnJzuGb38Nudd933sJqm7qtG9Zs2aVY13vw80mCfTqSI6BWwl9rlco6HDeZp8JEHEOBL0O0HynAyfzX4ex/+WBRgRKCsIKCvys4k52FYIAMoVgKIko3bSOzc3N38HNKhjNo4U4FAfMYY/WrETc3F8OlTPiiBpXDP/T0LKHC3RluEG62rUeR0dHSvyDf/gYBEZ2gnSHDOm0rQsdcVnv/0f0d7uQ83K6r3N2vp6s6JiiqczYmDgA61761atv3elUV37ysFP3ejMXBKDuyVQvtJHCEc6AOR4DHV6AWj8l7a2tmPc9mmonhUQNDBlPgPCPwT6V0uK4LXYSEgz+6dThG4+EsZrl7Rppy7YafOBB0+NWNaZRv2YIxITJk1VohU72BFNsWMxS4GEU6Jp0hUYOmW1sCKWqdqqZqm9WzbEN360LpLQH1MT/c8c8PgN7/GJVg6efCQPf/fGxsaTcfkH2qBKJp3RdxSrdwbo/KcQNEVyBKAz7wVgvijTY8YM1bwWUbklCxnWkCYHWfHKo6ya+vP08RMnWVU1g3+UVH+yFwKVg4jYNiDhXO3qVOIfr36VADR25YrnP7jjhy35gse1JmkhaHOFLB4RbBvaG+fzoSOggKARRr/DcPmIxLB/R2WgRHgw/OflaseIDHroYYfW//Nz3zvRqhtztFU7Yf7AlGkOk0f0BECCrxD/c6xowZpPkmYImBiQohve3xLb/Mniig/XPLT5Z+c8KtEx8GdKqCjD4eKKrjgJwHk5CL3DeZrcCm3VN1WSgcrVhU4cL8vH8OeAGXfJbSf+/Wu/eHRg573v6tvjwPmJ+rGONFD7elJAiRjCgk36TKzZBhmoaIMqgBihew/0W8a4HcbQM7v3m/lI9Q1P3TPl61c3uz1uuTgGcLmAaMTWblt5DpJOcnXqQ+rLcnUElDxottkyzZOV5B6Xstbh8L0pbxHXwQSRLvx80unf3Y0YtXfGQQ8kpu4+x6yocsASsU1BpJupa37urkNAFARMDEDGmHFK3677zt8w65jF1dctvtyRFgzUQcFDhdHmf2TluBb67kjq03Kc7CybxkKyN+BwuKQYM4tNYL6Bwe/GoHaMqI6RdOmcfWJL/7QZ8/X6sTGtp0tRTahj5A73qNsY3fLQlb3B5EinTGASriP9/Y4q6Eie3fa7YtkZVy7mUieIjSOmZAKNbiVasYiBfOeGVNaHR7DNfkNJUwgpw/TZmdFoVEanpd4b97yePE+5AIZGcBrJ+2Yc9EhiwuRJWn+foukDaUHCgSJ+ng5MvgHFwSSChx0d8EACkeTbdPicp2t/fP+XgxKJ3M9EG+adu0Eiz5CKRsejeM60cpI2Jd1QWoHIPFHTINaPlhRQaLGMLXyX49Rz/AKGtuh45eQFt+mTd77SqKlRtIE+yp+0rfoESjZJlO07GVU9ATwDE6dU6jvOuItAnmsfYID5E9GMMXve0oaF6nzK0vVpoaQpjG62H0BzAPOe5NtmPjt9f3t7+3q2faAVBDCvfeGyW/Ttd5xPANESHpmYRABlqmnAlQ4gQb4rAkhN9Kt6/RiFQB4UOFzaEK3QB3czZlfz71InX9sMDIR7BBm4QtBkUc04M4PAR0gy/rmUeQP3fDyI0c9VMg4Y1QAzkjpE6VlxVC17SM3emuKBiVQ5s7IqJ+AIRvzToNsbkqQNdwp8mvd1uahoJd9IGtlJ95Xhoxfu8RyFxPu1ZbgB/crnvn+xAxjdoNVv7KYWq/aQmg5MWQGWB5g87SH2uZoYUMxYhWJOmHKlaONkY1Zuc9ASCaKdi5b5Spum2rq66lA9k1gs09wBxD2QX+YpZchzswkdFTiZ3djL7vwvu277K0nCRJhtFRFtrBR4XJXA5QEoF/dIA1M2iUOePVLVjInTbuZeNR5Q6lM6PEo0lDBvw3+7P/VxCBq55XB0VKWM9jJ14J3u7u4X/apldNzp1AUHG2MmXmZVohl60oiJMIamo1cdDIosYGLACSKtfNtQHmAiT19iux2qNx7aeBWF+wRxRYN2S4mGEhas8RuQlDk8BI0Ee4arTWD0Q4TQ8rw9NrjPUj8qGbXBsWPmzIl+0jjru/rEqROdCUTKDe0FgiGjfY5g8rhXzmDKACgCjlW//ZzXTrz0++IAka0Q7YiGMhwCTD2jSeZDRDUwBE3+ZV8mIfJSBVhQ5gBGyMfdwPQqXGV5de65X1TVqvkRw0gLBAcMPgFQKmAiNdOKRhUKJnUkKQaITMARGRq0fJBFK0vpF+rjUNLIcwKQWraHDM8Zu8cqnCz3K2Uo+FLfbuJZ+pixFJGgZ7JN0gKK7J5igSmAU8L5LJFQKPp68/4Hnh2Ilqq6knZAkJiLew/yTIagkVFsmzLh17o3MMrjPV/VYrH+bF/mWfrfnXvO3JiuzlH7+xXNMGIRMOSQmsnQZ+cRmmT0AJO7egEiE5iGADOIU8KRNoZj4+gTJp1EToFs0mabxqcNEC3z5SGhT2sTicSeIWikYMamDYyqxI2L8uyg5eLisHTGP32HRr6ByTt9gaSMSkydQQKkBVMWVcqXtEoHJld0hC9J5QYUioYBwRi73aTOvQ+Y65eWbLuP5fnamUxlptM4zqeEoJEDGopsluY5Q32NzsUt0tOV9yY17xXrN07W+no9Gd0Pk3qBKc2LZnRJ52NHZWsnP7fjsXkUrpRJ2gwO4oy8JkE94w6eetxrtxA0cspUttw27xENhiupFB/TNWXUT1e4+3XTfxywX2L8xKqIGYDR06liIpN6SSUvQOUqmQKCiUsbTak8eMVnv71jNloKtPuYaCrJ3iTwbBeCRkIBMcdI6BTOLWvQyT10ki3OiVSzqu7+E7g6EzGNzIw45HP/YBKrowZmAFTqXAKYRLWPzgcmTKDl1zPEgcOrcNoxWq6R1M9UQ9BIKtPZJJqeb6coyc1huzNJGq6WvDutsVavqjqAG8pJRkwTrWwame2GLGDyDS5BUqQFlp97s/u7wUUuaBoosnmxOO1UTaNVnWsluJ111se7hKCRUzSJ9+rUDd0X+LoOnB21K6t35LbLUPdwjkGVecy/ZFP7MoLJj2ppmQoNFDRgiANIujIw0E/qbpfE/jHKBTQjcqPadKWiotL3iGhVVqucoSNpIpZtNbPqmC4a2XaHoKRzELjzWHjYdhHTJlGasW3pHBC2cH96R6Omdoxf+lRXUc4No0ei08cuFz5SRzpQBHf1v2iPlIxDHdPltU/WHg4mqnAkRoYR27eb1wNMvqRTASRTOqcEvy9JWT90ZUk3Vglu43ztmlgImtIDT0bVTIx5ivUlVxOqg6KY7dT8SyYPGFWveR2/APOVW8CvUyLNxGsKUC5gGfVjawPSVMbSc42BbodySbQxatQzjGSBOpgYytbSqEfpRtZIMJUoiOqXLikHqXrbri3/qh8fL7O9U/FKnxKRaiOFkkZCmUK7DaT7ozjZqVfF1qbcvNzj5FF9Gdh2bsZ6EMkkwylBbYhu7ez2S0ySBjQlIKFfTKY+b5WxxWAIGjkShuvcE3S9pyqj2GUeI3O7aS9lkxiZAFUKYAqq9vFS97elvrxYsXiMVLkdZYQ4cYdc6D0rsfahc2PV1TW+Bwnb0vvw+Cov4NhZsrOmiyJIq+7lqeY537HUnD18XKWL9nRv8e09Ay0NXZc5JVAROgLklC1MSuTdORQQaBpmlZ/v0mgb6e99P2km2NtqChTZnQFekiKTqjdIUvmZBCWHBHNKZJJU/pwSSYdArLfv48n/erbfD430RCKOw/YS+7o3BI0c6bBGwgpBlakQUy3L9LVmgxiHGGiIxBDBI4LJA1hB1a6c1D5Jqh9X7/S4/cArL7+ylc5pr5ssg9A4HHaXkFYrxvr4/RA0cuyRrbKynqBO0jStJtP3UllnwDjEQKROBWH24QJTvnaUI8r7+xTaNIrOedbLjIyjqqROTZSYJagrBI2csgYE7ZVhaLLczQdm+x4xjAMgMFC8q4sxl52qapp5muEEU75OCSsWU9StG9+ufb1tPX2l7T/PyPpAoqWM3aD5MnScvhOCRk75EERN8H6SMJrtL25D6PU9zjBj3njl3UjPlhaL9n8ZMkLbQ6p0MOUaVxYQTM45GDdRW33PR3+4/l1R4rqLi3b7S5Ay/DkUjrMuBI0cm+bfRFAZoRpMWh1UW1cXz6aiket53b3XricVTeX7yYgGOj93ecGSYTdDwcQBJZ77Yv5sgGLRz9mWEmRySpAKWrVhvVKx4YPXRUmbqRAN0R8HyFhNy+7Rx/o6BE3+sju+huu6eXYQ55j9FFsZ5/dHle+8/oQ90P22Ga/wdgTwLS74uZXB2yWudwkgqTICKgOwIh7J4r3ubVZUKpHeLQ/t9eK9TpaeLZs2ZRVfpmFMQH9wSWPlOZBR6WR9HYIm38LWor8loa18We04yzI/le3LXNqQulK5ufM+LTEwxHAOrG75MsztNNUqiB1FKZyiXZv7DGXgXqK1HwcAY/ZZREsZ/cKO77C+DkEjqSyzrPyjKgg0MFxj6PAv0LXfwMAd2267XtuysYWMZS4tpDJwunmZYoAJJb554+O0RydPKJLuJ64EjnNkLENnDgXqm9eVMiolCRqRoUFQShVkSUxMdyDbitCXtCH3c3zjx7dXbN2qWKo2iGkHM3WODJwOUAUEE53bmuZ4zCpXvXVRECI2NDRMwOFTEnZFE/u01Q3MEDR5uYo1GoU+kXErtinUzuA+X5uk8gm+dXd8//eRns4rHRAPCnGxBeljp7VVMhn/GQGWDUzcpnLlWvNySIhtoRCcWG+PUrP2vZ+sfeCaNZk8Zrzw3ABgdDrZWdY+NShbWR+XzR41JQ8aTVMpHupVSRul6tFolOybeTyNUyYVjf7Ogzh3W/77a7XuTQ/ZtIUhcQxVnxvJZjL+c3Iru13SIqCySCoOeq1z/fU0GPglnLDx1Wc0TYtJWEvD6f4S6+OMWYJC0AQobIXgC5IiaTUmbQ5+5plnZvv5AVfTWlta+rXVKy7VOj9psSoqBtMtx12ZM0monMDkQ1LRvFNs88cP7brs3kvpK34yavKBpampiWjWLMPGTGoRzm3/yvo4tGlk2jUAzAuSOoqkjAVpQ+Efp/h1CIjetKr33vrvyo8/WukAJwJ9PJJBr5cMpqHf8bmcgH1mVlYq8U8+eGiP1tu/Rd4qcZdqPw4A0Ow0RjtdBu9Qn1LflpM9Uy7eM+r2f6OjXpK8JfdpGDmb/P6IA2fNA9e8Gv3w3S+RxIExrTIkDqoCQgddBwKTafmWStmcEs4yAjTVGth8MwEGUnODH8CIhdHqDEa7fKPOnS3p0afLqG+VMitlARq2JffzDDR5b/HMpM14HOf7lTZu4FS+99Z8tafzIdWyVWHodCqF43uBx6umBVMmcGUAlBtcBBjV0K3YhnXXd112aiDAuKTMfNBsLLNl8uUbk/XlEta3IWgKoaKhs/5qGEa3pKwlKu5F9/xKc3PzkUF+yIFDXieM2l+NdG+8Po3u4WurP19gykX1g+5DLvJYX5+ibv7w2x//6pyLuA0TRMJQIRoRrYhmkngmhnvpuGdLualmZaSe0fLaOES50iZJRXPuoWlaNdSNS2gfnCBZUATnQDcxowMcvzZXMcAEvJDqSICxuzdcuP7G838dFDCckYk2uN0PiFYS6e7sSIfzDqUMS8mDhjPzC0uXduLyOYnzAyozRI+0TNPZ1CjIPIGYXd8BTu/m6xUWKh/JZaZcFpjIMYGRRRtI5AwYkRaMNnMLQPdn2tvbN5ablCkrScNUtD9SNKysfexJPyfJhQ68dObMmQcF3cteBM6ey+/5kZ3ofkgETnpD3fYPrIBgUihayIBN1b35ylwBQzQgWjQ0NNB+p5cyo12KlGH3Wo37LlbKtJQFaLi0wchE6z2ek5XBlLZ4INUfIJyKzrxu1uzZY8U9WIIAh+YaKCQlurVzJYWouBeAec+/2L5cy77B5Pi1wJQA7w5/vemqXADDJ30pETrocw3RhmhEtJLIb0taW1vfLEcpU3aShtm3N6FuYnuayCC444IGaOYaun4ZY5ycJI4TktL90Tlqb1e3FdWCrfXPE0z0d3pmfNPGlTQJy6MZcpEwzjsZxlWg8dHMxZw3n3CpTn2H46+UMi5lB5qOjo4VODzF9jSR1X6L5RH4TlNT07kiE/m9AY9T++COH7ZYes+CTEwuG0yOaxnSLdbdq/RVmgtoEjYXwPBRn9GAB3JKkQRCX/21paXl9RA0RVTRWAfchhGrS+Luwo6ahhGQpNeNjY2NXw6qNohxaju1/+4uy+hrseLBvOO5gimFfKP7egrzD/ry4uBAgCEasN3jLFk8QveD1KJ8D79xgzQETREK9GFyV/5OooGasm/YPNAvKM4qaDJuGtlpIRctJxj77qqfkprmZLQRNoLKqW0ZwERHsyJOKWVXxte99z+cIYN6yuhdYfifwQATk2jHiA6Xu9B3S5QyL2UFGpGJ0Ql3YORaryYnbqQBh3UwxVfdBCbaLahjgBZykcR5+48Ln4ht6bw3dW+PHdUy5lr2CSYCJallht1/M9lUfldfenjK5uL9b5ANGOYxI7txE2h6R7lLmbKUNBw4TC/+NZM2UmmCDqaO3peYiDxqQR0DvOjda34R6+pe66R9zZa6KUcwkS1jRPSWGa8uup2u/azxd9sxUEf3xLvepGkaDRYyAcNXzNLxpvb29uXKCChlqZ7xiTd0xN1g8Ne0ZOCktJGLqWrU2ccbun6JW8r5UdPoSAZ5pG/rE57M7zcPWpYNoLTefoVWltLSBZJwfkdwDhi2x+bPQMO9aLCQzBPkzqdB6DVV025nnsmyljJlCxo+8mPkWo3Ln4LBdTY6yuwMi0mwi5qbm08I+uPUOpWt66+xrUS3okb8PjU7mNi1Yy8Z/St3e3vxQ0ENf864hmH8NwaHebJcy2Ir+eCDcgNAvVZ0aYegGcbS1tb2IA4PSvSkuT1qpOP/HMDZJZddusa/9fj7ZNvwzPzu1ZoBILytEgDZTmZky/BFXNnyL7sLC/dfkG8qpkweM5R70Ee/V0ZQKVvQuCKgF4Cx35bpFBDVNFJdcPxeEDWNT3jS9027555oX38KMHytvrsGAZAd1ZRo99bNFR+te4xLNj9qj6iWgW6Xg2S1ksL9hxj/1Ce492UjwfgfMZJGCK8hNe176KSBQqhpLM3QV2Awz8sJfP1d/0JtpTxjmUWbPzA5yTGgmulx5Xe7bGj/IBcpo+v6mTgcLSHrfzq1jJLFXUx9M5IAMyLUM0FNoxH3V4VS06LRaLUTMdDcXBtU2lCK24FK9X47x4ThbhDROpn4lm6lfs0Hz5GL26+bmTMvqZqg07dlznOJzWV98Cv0yZ+UEVjKHjSDIgVU9Wrw91OF8KaRoYzjbMs0zwry28YXFzlti/Z0vkbqlHM/M7+mkWqm6D2tE9Y9tcIZMHxk+XeJzq8AMHtJDPcXvWV0/8XUFyNNLRtRkoYDhxaFgRm+hU57XbZ9wxkCt/1GEKcAZ+jpby5eWd1ltJpxJ/+6mU+4jKOaVVU829HRsS7o0mVIStru/XgJyReHaHzMvfxPSK8LymXT2VGtnjnGLdSUlpaWVei0cwCcdZKBwyc998fxOL8/4qE1tOBq67jo8kwTlr62xUAh1Uzr7swpIYVtWccAMIdInpNxvIy4J22NcjbZMUEjE0LQDFMh/Z4mz6BLLwNwvkkBgjKBwyKhSU07g1LbBpU2xOjxbsc7HCibiwAek5wJZtReafZ81Or39ymP2ezZlBjjNBmbMXl4yih/w9dbUagPMuWFDkFTYoVnacRo9zg68Xzy4sgCjhAp0Ohn9wF3IUbX45GVZsyJfs5pwoacCXpl9I1cwv9Nw6DQoNkSJzI5YMhT9l/Ay5NiH4SgKUPHACTOnTicKxM4AoC+6Dchh5hskBieRwekU8Ey2TlaIqFUbty8MaiUoSPoMI/UKMkShgBzLqO1MlLtmBENmiIAh4fXzIZ9MD3oj4nhKekFAKGlUcEyqWdatD+hRHu7VwR97pixY+sB9M9Kmv0ftYAZsaBJBxxJNg7fIKoO9Tj3s7KVqs6u1ZruX90XgUReM1O1NptG7zIuwXy7thKJ3XDYQ5aEIVqORsCMaNB4AUfTtNMkedV4VpXPBXcmmCuI8QkAKtlHPtfS4PuOIWJFtY/GvfX43+g8W/Jy10ZMn8YhlmcEAJcw64iWoxEwIx40buC0tLQsBvOcRjtvsQnQvFQV3Gt3Nu+RtXCp0K8l/qGo0e5BncDA464uieOoc1pf76ZcGBTv3JyH1yypG4JmbNeyzxMtRyNgRgVoROA4E6AoYPYToV4sFpJz5MKEVMfBrpnp5/tcKtDqSku1nWXQWTvHBaJcIwkaGmfTtokzchwknFgytsb/MUiZz5FLn9NztAFm1ICGA0dY9bkqGo2SqvZjML7oIPDLACqbr6EFXPsGbQtJi6AAsGiNPX4T7el5l3/mN0hTjRgEmPEc7AGkC082QnmXr42o6uliAOZoBIwzAI62F06luU2uQbm8sbHxFYDnGlrezKSH35lyCuKkROp75aTaBQQNSRorR/UK70RtrGZADyRdQBuKPPgepMvDo1UdG7WSJoOD4E9gpuPAHPfxNE5K0q2cjTH45OT27nv6NOyDdxaAY1RV9uXwyrvjfap9OAGSEZxJ6UKAuQ+nR4aAGeWSxgs4bD3OfEidR1mG/IMY09COX+kmAzXGhPUNDQ0TcY/1uUgat0s522/EOZoADFzPgZCh0JLxGI0ZsF2W47u/7O3tvV+kUwiYUSxpvOwcJnUehFZyHJiGlhishvoVE/X7fJ4l2h9kl3gZ9ukCNvNdSoAyMU1Uc+qa3hVAWY93vxY0OAGDwCJOm9Fsv4SSJovUoSw3CxcupJ25Lps5c+YfYa98g1Zs0gI0tnpTkZ3iKCLsuFzAMo3lUTaZE4PbLI42ivfsRb0Lf7uLPGNcFQulSwgaP1InxSwdHR2v4fAtqGx3YfT9Om2fxzY24hlWzHwktSNBhO3+PO0eAUzi93MohihZ+BwVzerjve4FeO4IwRKCJi/wiEYvm5N4ubq6+laA5Zv409FgsukU+Mg9UaqqaYVoiwiSfKQRgGFTW9HmCmarkQ33F9Rb8X6pBH6hoR+CRpqjgDESMdc5tGoTTDcfo/QcXM8lRwEG7i35AML3bygLTW6vU8/2GH0e50sAnntprkoESyhdQtBIlzr8mjHbT2bNmnW9ruvzMIIbNOeTyygdsdJDwFYjqb875/ml3iUpeWssFnuM50gLwRKCpqjgYQ4DYr5FhVJrREA5EkaN5NRuluJqEf+MVlXyRWIhWELQFA08osOg1JnPPek6EtLChqApcwDlI0lUdgdLLe22hiUETdkVApel2CEhQtCERQRFuiJKIfqeGZJr+PsrJEHpASXt9+xQywolzWgvBAKKyHGDwR2lY9MitHB8CyXNKC4VA5ExGaUHfSbWsISgGY3ljXnnb8NENDox1/toCTP121z2AQ1LqJ6VdfGKCEg7iclUObOiYteQciFowpIrkMISqmdhCUsImrDIlT6hUyAEzUgthTDQM0VEF/rZYQltGunAoKhncXsJP7FecVNV9ALM76fLihPGn4WgKQnAiFHP6b7nxayqEh3rHJn0sPwa+hF10ByP48ZecY4SAiQETckDhjMl7U+jaVqlaZp1lmnGVVWdZFnWTpFIZGf8+dm2traX/ay1UdOoXm4wkXQyPeZ4+DMaGxuPwOVc27bfQ1vWoC0fqarWq0SUru6urt4QTCFoil5oARetR2lubt4fDHmcbVm7GMk9avYEUKbg6OQNiMViSiKRqML1y3kZnG4wpbFWxowfz9PqfgbPvkLXdf6nXtu2VtmW/e/a2tqf4bo1XK0ZgqZo0oWt1nQYDYC5Asx5MtuGL5UfmW+YhCOlR9qDJFFrS0s//f6NAraN9rekjWGNgYEZwqZNlJ7JyTUNabgv2lqD9szjuy6H4AlBU3DbhdstUIHOxuEoNpp75n1mKZ52VJIpa9eKf5s6/9KJmq7WyuZUU9cn47Aze7YIZAfEKHPxt7sgJS8Wk2qIy59DEIWgyVmiPL90qbpl06ZBWSVpHxqoYxfj9JuQIhXpEqULqV8rIh70re6vPNSKWmNzVtmYE2GIjwDPwpPjvA08vRRPbMg22D0ZxwMB/Lvx8a2trS0fupc/k8Sid/fbntEIsuhIB0G27zB7QOEgYRKFG/q14MCdwIQnAzBnU74zPnor2ee4BuxtSfoCbfU3BCjQAq0smdXYsxKZvsMSvO+K9l+BVzgL4FmEd3oKdQ1+v4FUt6BbmY9GNS86ksHisyNT35k1e/ZY0zCmgLcm4XIfAIVymx0FRqtjKWnTqmSpET8SMdkWe2+CCdfKeB/LRyrC7q6udTU1NWvF9LOe+DNNnpJ2OuqleKdLWfLADoDoHzi+hc82wg6iXG6bGCA3WJZGm9Iqut5TFYvGxhHvkGeOpNVoA1B0JIOFdgBTI8aRzA2cbouK7ZTkhkfjDV3fhewCfHeXaDRawfM3MzuBgyXbVhUxwzDo+AxXd2j0pp3QHGljmfVuKZINJJkkjZikvKGhYQlAcZqS3OnAE9xcXeO2DvtsOssaSlsrUrraAXJX40+fKMkV1h9GFKuHvhuPxWtwIPsphlt0A2gv4bePt7a2LvHKExeCpozAElH0MzAufgU8cDA6lewAstzdrEdSIYZRlSc3T4GEMb4iMF42dYznSSamezCiqn/mat8gptXiu9iqVmdZCU/ApAOSymSHZqm1O5264OA1D1zzqvs7sVjsbrT7eAD+eMqomUUqqqIdRiDigwTZbBxIDFQpG0mQuPzz/8Szvgrw/BXnvwV4nhzp4Cl70PC5E26DWKZ5AgBzAS4PAwPHOCMo3vvMOMnM2T40igAqVfG5G1rqRihsX0pKX3sFdzW7GQZPi2tpgOFLVYtYYysSGm1t/qpb2lD2zKampkvAxFOFPXYUYcBQM/oYGBA4OCz2Y/fuae4d1XA+npwMePejIO0okfr/qZr2CNGAg2ckAaesQUOdQYBhkuUEjJXfRQc2se3KiYH9MEs6QKU3upNbVZi0CRJJFgY82tTpCfztEtrgKRujqDYUnkiOaZlUbavbucCBg5H+zebm5s/j3S/Hx2STTae9Z1gbLZ9Sc5Aq5/H5EHrQnBU+r6Od0/CY2eiLL0D63IJnt4qpcEPQDDNgWOjIURhIL8RHx5CqxcBisY6NSX6so+7QVhVUMKKvR30Vz3wZl0/TztHZRlbNjNTn3SpmF6XsJBdw2DzMVyF19kHbjkUbD8f1TLRxOpOGWR0aQWEs2ElMU4ydrOv6PolE4khc944kaTMSbBqyVxoJMII6oRYCLGw/Thqxl6PSlupL8bD2NqaG+FFFEtXx7aq0uKIMJCwlEoxpbT1BkK2zteie6b4jOgZI6uAjqgqkzyFg6MPQbgwyynEAfoWgusoCUErFA2CW43hRR0fHupFm15QtaDhz0JZ/YIi3wAD3o5P2sm15mSj5jmHMhUxg+Qs+uxOipkV0Jxcrr7Nflc69PIDtdkC21nLYfffgxQ6DtDkD16fg1caSF40GHFmDDYEG97wGoF06Eve8KXtJw9SR12GAXoXOuk+mdCE1jBnEL+H6OsDnSUiVbu6AKOXs++42cRC1Jtu/BNdLq6qqbsb5ZagncKdJvlKHbaO+HvVduhaCSUPQlJK0cWwFTeugTmejXN6AYdKFjPtfR2Ox37ywdGknZz4xeNMvsJXHblIo1iCm1Y+PmZpi5NIoSJlILK6Y6raMNH5H8jRu4NdwfUpNTc0JeNcFeOXD85U6jPZj0B9jlRFayl7SEANT6As6ay+h0/K2XcA3bWCc74vGPWe2dIvOUkSFgc7PaVfnVM4z14IxUrdEQGRVz6Ah2h5SwImiFvKqZQrZSQOexyCp2/HOC3F+Hts+PVeJQwMO2UsXHnrYoa+9sGTJ1pE2XxORaQPkIspleNAoBN+2rMdwv6PzfR82OQn7SP0OhYj47XCRcdMxLXmzPpl28m8rtbENhtFHYjEYU4KR1UhU1Y0tj0348M/niSEsXsD1E+82ZGK4oeEC0PE6muDMR+KwcJ77oNJ+k6mEeU92Dievlj1oROJjNKuPx+LUyd/I9114R0MdO5/UMb+qj/t7dF1bV1e9focjZ6mW+umIVrEbZdWMWfEd7UhkqpKnwW3bRheE1PuWYnRGDGO9bQ682zVee2T91O3bGl9cpPKgSy7x/IBHnCRubGw8C4dbMkVzB6DnU6T6sd2ylXzAE4ImB9AQscmw5EyBziXX63XonOO3zdvlbvRDwjyc0BNffeXlV7b6AQyXLpwpaa1MdW9srqbVnh5Vqw+m2ftIJFoX1Sq3qU5mf/5eNEVTVC052WOZOnRKMwUk2+j/l2n33dZb2f/KunuvXZ+r1AFtaaL4l5IGInI73+K1QS5PSuIHQCFofILGy53Lw2XQCZei7s9XUOYo8h3AUKQv6kk0IvoBjMiI005dsFOVVTU/ro49LxLRpg3K+u8M1BHLYplnVLBRzpEALlVNIKRKQDLj+D9hOSAylP727hrzlt3eefxPJDWDAIc7WGpqau6jIE4eGZ1PPzOv2r9x+TvQ/EklEn+9vW2p7tXP6aRQCJo0oMk05wF9ewIOR+N3FMk7j41ieU/MMY/blW1tbQuDAmbGST86PVqx3eVxrXZvGvV5Qj+a1XHurfhjNjsiCUQ8ijmelERmoqu9z9p4gVeAZzbggN6HgDZPgM4T8wSO00dEZ+oz3IuWHFDIEcWptff29r4WShrJ6hnrvM/g9ATUw5mxnuqMfNQy5imj9STHADRvZQON+Pc9vvDjH8S0cT+JRqtUy0hYdoF2z8wJUOQ0IDUuGldNvXftprqtX/zgjh+2+FU7+Xegpj0JelMojqzJT+c+QsweSZ9/oVIahddx/XctGl3ZKkRZlBpoSs7lTMGXip2oBy/vBwJ+mgIwlWS2l6lslHJiyxT/kcgZRy4G3JUEGD+/4bnGKDw/Gqn/AQdMMk35Nu62Je6RmU6bywgmMCYpapbRZ0Vj1dPG9Fi37dLcfDAxYzZVTQzFweUzoPfREkOTnAljvvSCVpKy1aQEzF6cd9uWRZOuC72cLKVQSiKFKVfJmpubdwFgnkAHvQnA0PFHGJHmgpBThahlae0mRmAOBN8rLDmzVemV87VIRV0SMB73TvNPrpowtHoO7SCbamt7rt9+zok50IjCb3rZ4GJJ5j1nJSnAojP1rxr9PRF9/T1IuMOUEi1qKQCGjyQg3Hkg2pGkQ7P0Q45UYZKFSqxAzchlgh6SijsgbN90LDSY0oEIQ04PX1IQUBr3Oz8vnIqusn51wm2or8ED1PcXiFIvBI1HoQlKAOUYZzizLN3e5h1SCxC17Lar6nzrs2zuoy/Wf6+lGF1kM5B3LO92FBBM5J4md/TEj599IYefU76E+DDwYwNz/ISSJq11aJqftpOZX+hSK1Lb+LqbGbSW388PKCyGCnmj+rSuSxzVJwWciHTdOxLg3yAJodhWRFEtsrl0o7vL0DdfTDPzfl3PQjmGTXIWi19UtqR6Kp57XAiazOUIWstfxM5RmFSjwz56f/8xfr5P6gKXNqvuu+zmbvWTb1FIjAMcRyJGhs1o3QYf1Qm3oTYRYHRj8+lv/3HhEyLo/ajMTgqr5OI12fZM2u5QkhlKdaaizQxBk1lNms46Ry/m+7PJzTo8/2t+dWgaqXlqVwJOwvjkhH6zs9254SCpUywA8efgCNxSGyzbsAYGPnms2/74UwQYAnpQTxSk/1mgzwHMvV8Yd3pSDdeZJ81ZFUvLFMgljbJ/CJrMZSIDTUwcdYowwqmMKU5uamo61+3RyyRxeIAmMWXdu4uOHTA2LHDAQzP0gySPV80HIB73coElkfh4/j8fuuREUiMJMCRh/ACG1FQWRkNu/u8QExeoD3j2HpVyGDCpvxp90UbhTLqu34+PniJpV2rOgGGd3DzwwAOdkY+S9Bm6fjfaMhcd1Y06kU9+sdFIXJYrHew02rFw+PV49sm0HCBodDO3E9DJ23+w07FfqEjEjlG1yrmxaG3dtpGbCVEWWpODOFa9jHy6r2kPdJmJLbdbiv7y5I1L/8STWQSxYYRIgAm0oA8kOVpGxIXnSMWSn6BSIOfTOL6OZ76D42pKTJKmn0LQ8IgAlvF+NxCylhGnFn01BX/fF5eHoB5OaYL4AjOZS3PFkY8Fbf4T52e1tbVRiMeg6N+A4KldO2XWHhVmfJIWqTqHAjgjkWgqwpkHXAZzlmwDnanoyUjngS1PWqr13ICW+EgMlQkSSSwurCPQ25Z1T6EAI6SIasPhBsjkDq9MpF6L/ULQKP7CaFhw5g7Mk3Iq2nsQGYkFGgF5WA2tU7kAwHk4KAPSyC6G5/N3WDNlFmXxVCrN+H7icgFKaE4JADPd01Stbr4MwFISy7rHqC9qXT1r6G/j33r8fbFdPIG5X9uFZwClcxY1fiMDTEH6G/1HK2B/juNtkCgbOX0pel1MrBgGbPoAjbjmnhNwSMBmMr8ZxaBdBeAckE90cyZVjUkcmgW/EdfXiZ3rlxm5h80NIHEkpffUByxfkzGxCtVOBwYx07/f9rkHAgDmFByuBmBmFErCgJZdOP06JUMR+9xvm0PQ+JA0vGPdYrqpqXkyePs3ZH8Uov3cxmE5wpYCRL9saWn5s5eTwK/0cXvf8mmfezm1XxXM7chwBqJkMOw3cfoNWVHj6WwY3NqJJA86AIWgCaiepWPUWbNmVRuGcT8tQMt3vYcPO4cy5j/KVIrnM7XL77uIa/qDFL8gyTToJAeepn3AxGeBbl/EO04tQAJBt5RZR8vRKRebqBKGoCkgaLz0cLYx6x8pAjqfZbnZgMNyn/F1IJTO6X588hBf+55tNC9mybQa0lmGXVvbAFrRbm5zKOOm84IFki6iuotHPI/zM/yk7C110JRlNhquv5OHC8BpQaecBqljFqjjVR5hDSYjD96xJoX8WNbFUG1ogdZjYIh/9vb2bnYzgteuYrKA5AaoaAeK2XJIIuu6PhntPArvcQpl2aT9dhhYCiZdPIqhjJBSlqBxrff4Bzqf78lSyCKmvaVdnPcFA1K9COcrampqXgSAnwdDrsJ4+CGk0AYvFcS9xyWXCpmK13c8wOdc05yXnkhQoCPlbT4CgwmFJ83G9Vg+NxJgvx2Z2gTtZFATgqY0ilnEZ/FE36ktBJktdRAY8iAcL4QUInf1CgCIViNSlsn3waSr8L1NSiT+AUCju5jfzyDhKWmqq6vH4b6TUaehPTvg4z0NXd8b17sryV2dB+2748rbXKwZdpUlcdyX5aZbFYJm+Ms+zDOjF0HaeAJISa4D4SMrMTGpQ8c6OolhkFr3HmmViqJ/BDDRmhbaVewd9ntyba9FTdCWmB5eJwpgpF2ip7IBYqKS3DV6jJLcwW17/H0S5WTmURRcmggrXIe0u8jFYgv+vtXQOPtZSqhRzjmeyxI0qSjc5FYShzJG0fJNPpgvgDiIrGRJqXU098EzsvCoBmGOib7YQ5G9Xu1nEoLWGlXTOQFDCEEZtHsbGziCbkxVNGmDcrxiJ8i9/RuxH8uN/1SljAuY5Xgw0F4FCqvJR49XRaal9vFlvVToKKhLpOLVsTAhz8oBwySXxe/BV7UKXqVYiYHFLW2INldisJvtTo9bTqXsXM7CZk774ZL2iJleQHdz0RhqJA9uwiDH3c+Ugeb0tra2l4NInFJxOZdVZ3DikocIl79AB0wv5BxDkfshUx0Rhdk1FG1Bux48iIFvHnN0WOUkccoqIkBYRnAnCD9vhABmNBad7VxH51+BxPm9H4kTSpocJAyleAJgFjHAKCFgylYVjTEQLEVf/q3cnAJlxXQwemfSvvU+7YCwlKYzQOW7M+D6VNrFjqto5aRLl3zhBG1vb1+EA+3atYwtww3BUzhp4K5534+tjt2E/rukp6fnTB6HVna2WTkGbLKlAZcqyV278t0r0vI7iPBcbKzdI8Fbp7r7Il2fiHziwTPplqGndttmAa/LcP6D1tbWJbmoZGGUs5Kfy5nOGxsbT8bhKnTIvh5hIlkBko5R3DTx+jsPpSkzAKWy97v3JsU5RWy/j0oL7la7fkcJAylMR6PcdDz7qUgbjzwODljYFhu0tOJWXF4bZHe5EDQSJY0IHCZ1zsTpRZTO1um1bdPxnJlpMlFTk4XbR3SgzuxDTaBuUJJxURQl8QaFt+BYiTbupCRDVuiHFNNFS5OrUOvoXowpHACxhOqlCCCKNogxW4KvoKQwnhdx/jY+f4PmTlRVS1iWmYjFYn2DfqzrVfhbPNlnSiV+MwV1NyWZv4Hmy2iZ9HaUVJBHKwj98Bd8/hNx79Jw+8BhAA0nvjhasfXt30L9Euyd8Yw5nHi0aDTKQ1doffpHqO/hmibWVlIGFPz9Dd2I6L09naZ7BOTLkh3mGbCgZ5hjcbP9KMSeHksMQ6MvGK2ahbKUjBucSUKVbU1CtPgH6tOoD+NF/u61nUXQQlHbTz/9NAGmGZdHos5SkrFxlMPg17Bd7uH09JukJARNgUDjJXWSkqepCe9E+cuOBhgmGoZB0qQVny3H81pw7EiXIiiXMnPmTEqfOotWJeJyDptwVUogtIcb3tSWZ9GWe3H+Z57vwGsAysU54y40j2YaxkFaNPqauI28DA9ZCBpJoHF3+ja1rWk23o1Wdr6FUfW5bKss8/Hq8cLW25+Bei5qTZEXeQ0qTBV7G+24HoS+x73Dsh8ABKG7171kb4UegkYiaNzqgpcKIC4DltWR6ZY3M8AuoFRI4tqbIgPmKZx+m29WJZuBgwxgEtXNEDSFCuWXOZrmqiqyxB/fxen3aXlxAZN/DKEp+vT3kK7nk3QpFliKZKOFoBnG9S8FH2mFFEnH4T1vpd3cCuwkSG3rDsDMJyM/16wvIWhC0AwbeATP3lE4/I6AUyCJwwGzDLj8fEdHx7pyXhkZgmaUgsYtdQCcL+P0t4r8Jdk8lW4qeftIkzClBpowSriARRzpWfj7nWzfFb49osWP2YCRoZqMmf7AdzsYiYAppRKCpgjA4RIHAuFWylZDmxax6ARnE6NM6hpJYzVDiaEANDQXdV9I7eKUaEiC4gGnpaVlOdS0BwGcL+HjLjA70Z+kAoXp1KdRSbaibnH1Ff2G5l22QC2jzzt6enpeDikdgmZEloiqXgckPOACxnY4jEvzk82QNp8M0dcsi8KBOmOVlVtEdWykGf8la1wNVx1tpVBrR8pxTUq58apYQ+/ZCADOaJEupTLQ/r8AAwAeaNl4d1lewAAAAABJRU5ErkJggg\u003d\u003d","serviceDescription":"An efficient model for cloud-native application delivery","serviceLongDescription":"The SAP BTP, Cloud Foundry runtime lets you develop polyglot cloud-native applications and run them on the SAP BTP Cloud Foundry environment.","serviceDocumentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9c7092c7b7ae4d49bc8ae35fdd0e0b18.html#loio9c7092c7b7ae4d49bc8ae35fdd0e0b18","serviceSupportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html","planName":"standard","planUpdatable":false,"description":"Create an org in your Cloud Foundry environment to start developing polyglot cloud-native applications.","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12-001","createSchema":"{\"parameters\":{\"schema\":\"http://json-schema.org/draft-07/schema#\",\"_show_form_view\":true,\"type\":\"object\",\"properties\":{\"instance_name\":{\"title\":\"Org Name\",\"description\":\"Cloud Foundry organization name\",\"type\":\"string\",\"minLength\":1,\"_BTPdefaultTemplate\":{\"elements\":[\"gaDisplayName\",\"saSubdomain\"],\"separator\":\"_\"}}},\"required\":[\"instance_name\"]}}","allowAdditionalEnvironmentInstance":false}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:22 GMT + - Tue, 01 Aug 2023 07:33:11 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b40cf224-124a-462d-7898-531cde8c7ca7 + - c8706aba-d12f-4506-7ee7-fd6a7d5dd58d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 194.594402ms + duration: 146.437648ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5fde5bbb-f4a0-8869-0d0f-1ed70ee0024d + - 687fb13c-ce3f-ee50-eff8-a85adccc0b94 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:33:24 GMT + - Tue, 01 Aug 2023 07:33:12 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f6df7403-10f2-4f49-78a4-e81f7057fe3d + - e347fc45-f476-4639-6765-20262e1e11dd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 549.979204ms + duration: 274.71471ms diff --git a/internal/provider/fixtures/datasource_subaccount_labels.yaml b/internal/provider/fixtures/datasource_subaccount_labels.yaml index 194dc318..3f3ee944 100644 --- a/internal/provider/fixtures/datasource_subaccount_labels.yaml +++ b/internal/provider/fixtures/datasource_subaccount_labels.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a33b2771-c2ee-9eb4-2e22-d9e3c79fa5ba + - 622e008f-4ad6-3c29-b329-e52612ef0d70 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:31 GMT + - Tue, 01 Aug 2023 07:33:07 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0db4b1f1-63ad-44fa-73b3-fb8347e06bb6 + - 061bf649-b71d-4252-49cb-230b8156ef65 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 752.836305ms + duration: 443.038423ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5253a57d-71d1-532a-2539-c8152c2e7801 + - 7ae3a06c-1ec6-b879-8adb-fcb3cb9bdd91 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:32 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Pragma: @@ -120,36 +124,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2ea2b7bb-5f82-4dd4-4839-b1d80b0f8988 + - 65b7a88c-cf91-4d10-4149-d1758e98c3ff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 250.452589ms + duration: 182.672721ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a68224a2-7cad-496e-7823-33138e85b9c3 + - 8516857c-d7dd-f536-2ea6-e3223d614f0b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -160,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:33 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Pragma: @@ -185,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c83b3fbd-efed-476b-59fb-07f50a5efe9c + - ba6879aa-9a16-4ed2-7147-90b99682ab04 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 419.991151ms + duration: 341.587636ms - id: 3 request: proto: HTTP/1.1 @@ -208,10 +216,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41544308-1182-5ec2-bd6e-9adb3ef76a4e + - 0a015da8-a184-6bfd-a212-885a5b95ebe1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -235,7 +245,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:34 GMT + - Tue, 01 Aug 2023 07:33:08 GMT Expires: - "0" Pragma: @@ -250,36 +260,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - fe9ca609-5841-49c0-58d1-e755e8428980 + - a128edbf-a1d3-436a-48b9-863c4e976389 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 249.542544ms + duration: 183.087953ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a2a482b-2fff-8f54-dd27-60d4f4d12e81 + - 8d7f11ac-af23-2ac3-bd6f-f52ea796b050 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -290,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:35 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Pragma: @@ -315,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3dbdc648-946f-4848-7afd-743e6e51870a + - d2ed14d1-c016-45d2-7280-0936883350e1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 475.36975ms + duration: 195.912248ms - id: 5 request: proto: HTTP/1.1 @@ -338,10 +352,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 402b3536-e606-98a6-d942-a8ca58d05291 + - 3012980e-198c-975c-224e-52bd906c93ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -365,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:36 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Pragma: @@ -380,36 +396,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 160dd03c-55cc-4836-4a9e-14d8b9ab4932 + - 1dd52b3d-df1c-45fd-416b-3635bb84ee1b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 253.729693ms + duration: 170.952324ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 01a130f1-a715-5865-6cc4-658dfd161a16 + - a345af72-fb6e-edc6-2dc1-47de50199f76 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -420,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:37 GMT + - Tue, 01 Aug 2023 07:33:09 GMT Expires: - "0" Pragma: @@ -445,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 79e3c9c6-7e33-463a-7d00-4dfecae3fb02 + - 1a939ee0-bb9e-4aea-4d02-20b93b4a9f06 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 455.503506ms + duration: 210.005239ms - id: 7 request: proto: HTTP/1.1 @@ -468,10 +488,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - df5e572e-200c-aaf6-6ca2-5bd8be3ec604 + - 02acdcd9-cbe7-78c3-5e5e-d21a9ad159b0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -495,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:37 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Pragma: @@ -510,36 +532,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - fefe6fa6-fa9d-4f3f-5c51-7011d81ba954 + - e6e0517a-1dce-4a1e-7b34-84f739952224 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 231.941252ms + duration: 169.884859ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d6c59c92-1967-c4fb-439b-457dae6e9fdd + - 8554a1c3-6ec5-f33d-0b73-13a844e5ed7b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -550,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:38 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Pragma: @@ -575,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6d2c2690-5778-4664-72db-906a66632c4c + - df09265d-d10a-4fea-5032-fd977de45fe5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 511.644918ms + duration: 390.032979ms - id: 9 request: proto: HTTP/1.1 @@ -598,10 +624,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5dca5592-3ff3-1232-6b2f-3764451bafa9 + - e5b2e328-49bf-bd1f-336e-e83ded19aff9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -625,7 +653,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:39 GMT + - Tue, 01 Aug 2023 07:33:10 GMT Expires: - "0" Pragma: @@ -640,36 +668,40 @@ interactions: - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 92928967-a37d-4725-74ec-2e060232eda3 + - f4177b4f-422b-4d98-6b61-4e3c98a6bcdc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 242.432687ms + duration: 232.732342ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 21e6393c-2180-9b6a-81ef-c114c683c8a9 + - 64377c9d-3659-5a70-72d2-be5da3654d34 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 11:29:40 GMT + - Tue, 01 Aug 2023 07:33:11 GMT Expires: - "0" Pragma: @@ -705,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4624dab0-5c2f-4ffd-755e-116b9952bc98 + - 9efe9075-6dd5-4659-7407-fe0bd06a084b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 471.828571ms + duration: 389.000785ms diff --git a/internal/provider/fixtures/datasource_subaccount_role.yaml b/internal/provider/fixtures/datasource_subaccount_role.yaml index f15b248c..3fc4ce7a 100644 --- a/internal/provider/fixtures/datasource_subaccount_role.yaml +++ b/internal/provider/fixtures/datasource_subaccount_role.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9313732f-cb45-46ec-52b1-dfb8e5647651 + - b0959610-00c7-b647-541f-daa04acfcfb6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3a10f479-0359-49d7-492a-07d44e88ec84 + - 9f85a393-9c7b-47d1-4974-153f293c8e48 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 328.426931ms + duration: 282.035957ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6dcdb8d3-9b3a-5c7b-1dde-1a0327e3b82f + - 596040bd-3949-21cd-2a15-c41b6eb84055 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Location: @@ -116,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -125,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8ebd23db-b8db-45a0-628e-6c792733e94a + - 84078f32-07e0-4b12-5f58-4e726c11b2db X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 162.047779ms + duration: 167.381185ms - id: 2 request: proto: "" @@ -150,8 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6dcdb8d3-9b3a-5c7b-1dde-1a0327e3b82f + - 596040bd-3949-21cd-2a15-c41b6eb84055 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -177,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -192,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2a19a2d3-a995-4f12-4590-bf1fa5bc631b + - 5171ae78-8e99-479b-642f-ffe453b022cf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 144.728564ms + duration: 151.962985ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 044d2ce8-0bd3-fa8c-2b6c-40395b941918 + - 5cd4c0be-8317-f8e3-6b4f-644e480363ca X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -232,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -257,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 552603c6-5c8e-424a-65f9-bbbe415cbd2f + - 3e689657-a593-4d52-4cb8-77732f7b62ce X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 354.504018ms + duration: 249.563368ms - id: 4 request: proto: HTTP/1.1 @@ -280,8 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44cfcbac-972f-a9e7-cd13-777d03bf0053 + - 7e0e2d80-2b7c-bb85-4376-11925fe08ca5 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -305,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Location: @@ -318,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -327,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - dcc8174e-66db-4cba-4934-df0cfde25f17 + - c16793cc-5a51-45e3-70ec-c8b3451d18f8 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 254.569223ms + duration: 156.160282ms - id: 5 request: proto: "" @@ -352,8 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44cfcbac-972f-a9e7-cd13-777d03bf0053 + - 7e0e2d80-2b7c-bb85-4376-11925fe08ca5 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -379,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:03 GMT + - Tue, 01 Aug 2023 07:34:26 GMT Expires: - "0" Pragma: @@ -394,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb079251-ad37-421a-5a09-ee9613142eab + - c9100bc9-fc03-44d7-59b2-cd4c28907ad5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 160.347083ms + duration: 121.478242ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e538a320-2874-5f25-89b9-9b4659a315be + - 5fdd315b-6c3a-6f50-8c9b-654cdc853b45 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:04 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -459,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d08678aa-07db-44c2-6847-388cd492876a + - 073b2305-3e2c-4be7-6472-916a82036b9e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.002969ms + duration: 366.277414ms - id: 7 request: proto: HTTP/1.1 @@ -482,8 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e24b1645-8e69-ed54-4aa9-db679259c9e1 + - 58b753dc-d621-5bd8-2961-54e38bf9351b + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -507,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:04 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Location: @@ -520,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -529,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4da29085-af7e-4359-6960-df7d3883fc22 + - 04abfe99-9210-4e54-4fd7-8701f64ef6d8 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 184.033879ms + duration: 174.401954ms - id: 8 request: proto: "" @@ -554,8 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e24b1645-8e69-ed54-4aa9-db679259c9e1 + - 58b753dc-d621-5bd8-2961-54e38bf9351b + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -581,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:05 GMT + - Tue, 01 Aug 2023 07:34:27 GMT Expires: - "0" Pragma: @@ -596,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 66793d01-2feb-41b7-6188-2c41064867f6 + - 1570dac3-230b-464c-5dc0-a5eb737cbdbb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 100.952517ms + duration: 120.53798ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e78bea7c-6f0d-3aac-6ae6-c3d438c079f7 + - c089b4c7-86db-f0c0-0fb6-74f67067d2f5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -636,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:05 GMT + - Tue, 01 Aug 2023 07:34:28 GMT Expires: - "0" Pragma: @@ -661,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8dc27e08-c34b-40ed-62e6-3db17f0dd170 + - 7a3f3e6f-b8f0-4006-499f-c8acdba1f56c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.343616ms + duration: 212.149973ms - id: 10 request: proto: HTTP/1.1 @@ -684,8 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 72b9fd28-5eef-00b1-724c-5d88db7c80cd + - c28b4a12-58ec-7779-9483-8de1229a060d + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -709,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:06 GMT + - Tue, 01 Aug 2023 07:34:28 GMT Expires: - "0" Location: @@ -722,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -731,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 91102ec8-bbff-4ce6-737e-d09cc9b9d24b + - f62f8a44-248b-410c-43d5-837b00477bb5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 185.401307ms + duration: 307.802918ms - id: 11 request: proto: "" @@ -756,8 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 72b9fd28-5eef-00b1-724c-5d88db7c80cd + - c28b4a12-58ec-7779-9483-8de1229a060d + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -783,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:06 GMT + - Tue, 01 Aug 2023 07:34:28 GMT Expires: - "0" Pragma: @@ -798,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a04b723e-2005-4248-4333-97d29aab4323 + - b009a0d9-4e67-4f69-4b53-be3c952e85a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 154.618607ms + duration: 112.994369ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5fd231a4-fdad-5a85-3740-c276e8350d73 + - a23ea365-aee1-5151-b72a-fdaf4ed7b82f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -838,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:07 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Pragma: @@ -863,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8c5b7417-2cf2-4bf7-6e53-1f3db72a5280 + - 2b3e0118-f720-4a78-7416-c3c5adf6cf8a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.519982ms + duration: 169.073367ms - id: 13 request: proto: HTTP/1.1 @@ -886,8 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d2fdf4f5-84b2-7f12-d6a0-c7d76819b6b1 + - fec6c9cb-b073-d59f-5260-3bc2653e77f6 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -911,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:08 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Location: @@ -924,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -933,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 68d8081e-1b46-4f25-692d-a3562c73a3f6 + - dc14b0b6-4731-4c5e-5f9e-f3494a6deccd X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 168.549214ms + duration: 154.036608ms - id: 14 request: proto: "" @@ -958,8 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d2fdf4f5-84b2-7f12-d6a0-c7d76819b6b1 + - fec6c9cb-b073-d59f-5260-3bc2653e77f6 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -985,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:08 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Pragma: @@ -1000,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 60a86211-49f5-43c6-6f81-4da05fdc4f69 + - 7eb7f1e8-3de0-4340-50ab-e671909929c3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 95.683424ms + duration: 141.952435ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b50540f-60ab-e3ea-1ded-4aec72d82947 + - 7ebc47f2-669e-55fc-0568-47ecf6f8262f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1040,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:09 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Pragma: @@ -1065,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0f3e01c5-9772-426e-49f5-07bcaa217600 + - 82c66d70-9214-4051-481e-3dd3023f7cb4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.883892ms + duration: 184.59577ms diff --git a/internal/provider/fixtures/datasource_subaccount_role_collection.yaml b/internal/provider/fixtures/datasource_subaccount_role_collection.yaml index 70c18879..c7864421 100644 --- a/internal/provider/fixtures/datasource_subaccount_role_collection.yaml +++ b/internal/provider/fixtures/datasource_subaccount_role_collection.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d49ec1a1-ac62-23e9-41ba-acc895432fcf + - 5ea2aae0-bc2e-b3dd-8e0f-fa5d99fe1722 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:50 GMT + - Tue, 01 Aug 2023 07:33:02 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 294820d3-6bdb-4b1c-6c33-01f45b9f4258 + - f73f3334-08d7-4147-5f97-557d249607a6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 852.014217ms + duration: 416.650497ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce896e5d-2a85-73d8-7167-5b25e7f95f72 + - 82026ad1-2479-3eaa-3d17-5ec7c1c1f7fc + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:51 GMT + - Tue, 01 Aug 2023 07:33:02 GMT Expires: - "0" Location: @@ -116,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -125,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2f7734f0-20f0-4212-5376-ffe3dfa6a7e2 + - d2af0748-db39-462c-5270-2133bb4600ba X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 185.271775ms + duration: 174.617668ms - id: 2 request: proto: "" @@ -150,8 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce896e5d-2a85-73d8-7167-5b25e7f95f72 + - 82026ad1-2479-3eaa-3d17-5ec7c1c1f7fc + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -177,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -192,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 879c83f7-e760-4f15-6990-c2f7b7fd7a97 + - 7c343516-d9a5-4a54-7b16-0113d2f6f331 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 200.326193ms + duration: 178.179002ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 48ec8540-68ab-20f3-1643-a9341131f479 + - 19a9b6a2-da52-e843-f144-2ea4a2a9e50d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -232,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -257,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f41e589c-2c01-4adf-769d-5df148375205 + - df86bcbc-89d9-49f1-4cd3-931e82836741 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.682417ms + duration: 234.26208ms - id: 4 request: proto: HTTP/1.1 @@ -280,8 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9bdaf5fd-a309-5514-12c2-787c3a2a66fc + - f97a03b5-62ea-3e30-df46-0c44cf9525c3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -305,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Location: @@ -318,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -327,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ce477ce0-6996-4a44-77a7-54d88967fa43 + - 7df94a48-e637-4189-6619-296b02149e8c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 190.075588ms + duration: 165.120532ms - id: 5 request: proto: "" @@ -352,8 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9bdaf5fd-a309-5514-12c2-787c3a2a66fc + - f97a03b5-62ea-3e30-df46-0c44cf9525c3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -379,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -394,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - adf92cb0-9418-4ae6-6535-ce2a333c8b80 + - a8081c9d-3eb8-453e-5d2b-b65b9a181485 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 91.223774ms + duration: 155.075697ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 25eb9c60-513e-7c38-8400-c45b3a6fed44 + - ab5d9989-0a62-391f-a17a-b97a8d12dc8d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:54 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -459,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2ac99d0e-f262-40c1-4488-9327cff58bf9 + - 8259c345-a67a-4d93-6913-aed2a375314b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 340.629705ms + duration: 229.178322ms - id: 7 request: proto: HTTP/1.1 @@ -482,8 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 10c9887c-718a-696e-2385-7647aae5df14 + - 0585b3e8-ec7b-56be-44fb-7d07c0f2218f + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -507,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Location: @@ -520,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -529,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b1622a8a-843a-4b8f-43fe-a0c364252286 + - db964b63-061d-4ddf-7089-16da4a0f78fe X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 156.246978ms + duration: 220.968829ms - id: 8 request: proto: "" @@ -554,8 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 10c9887c-718a-696e-2385-7647aae5df14 + - 0585b3e8-ec7b-56be-44fb-7d07c0f2218f + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -581,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -596,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9588978e-4146-4870-4d42-ed8217b6842f + - a920a0a5-225a-4abc-42b6-1db097a23c4c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 149.377098ms + duration: 79.938941ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - efff66b0-9889-f662-6963-bd066cde5897 + - dc40af0b-7672-a2a9-6143-19872fd5f46b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -636,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -661,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6aade242-0dae-428d-5eb7-78eca460acca + - 21623766-531f-4e2d-498c-e8c46df306aa X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 339.92336ms + duration: 243.540968ms - id: 10 request: proto: HTTP/1.1 @@ -684,8 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 114794e6-e544-1717-37e1-3ff8c6749a52 + - f55ca42c-67e8-5567-3d49-d77faa4338f5 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -709,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Location: @@ -722,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -731,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c27de4a6-865b-4d5e-76a5-d487f5bf292c + - 2001eb9b-e2f6-43f9-6557-1dfb80646742 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 177.706897ms + duration: 171.361225ms - id: 11 request: proto: "" @@ -756,8 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 114794e6-e544-1717-37e1-3ff8c6749a52 + - f55ca42c-67e8-5567-3d49-d77faa4338f5 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -783,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -798,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ce49e448-7a94-4973-78b7-87c6b79cd8cd + - 41a6b262-8450-473f-6d4f-47416cfffb97 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 75.760643ms + duration: 78.607695ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 15955c03-67f4-c525-06fa-d75cb00ed0ba + - 92b3d24f-a1ae-853c-f1cb-ee8801ea390b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -838,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -863,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 04b83e06-0d0e-4423-4bd3-eb824b06d137 + - b0fefe12-edbb-4f6f-789f-82c92e973a1e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 327.842778ms + duration: 275.9025ms - id: 13 request: proto: HTTP/1.1 @@ -886,8 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 969d47c2-e719-43b0-6bc3-ee9878321b18 + - 0d43c37c-e332-a537-70d8-ab7a659cb902 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -911,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Location: @@ -924,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -933,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8e023774-df61-49f4-414e-5fbb674900fd + - 8876848a-8f2f-4894-672e-e97f7daf764e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.643484ms + duration: 162.96449ms - id: 14 request: proto: "" @@ -958,8 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 969d47c2-e719-43b0-6bc3-ee9878321b18 + - 0d43c37c-e332-a537-70d8-ab7a659cb902 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -985,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -1000,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 718d48fe-8bbf-41bd-45df-b89780a804ca + - 69bb01a3-56ef-4e82-6aaa-e62cf641dde6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 106.407997ms + duration: 82.506135ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 77ba22c4-de7c-e1f8-665c-4f02776151bc + - 56c3fc6c-60a3-357b-c346-632b30c38bf8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1040,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Pragma: @@ -1065,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 667c9d59-b80c-41cb-7cb4-1cfb08cadbe5 + - 10e31152-c4bd-475f-7bb8-755717ec7e3f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 355.283947ms + duration: 299.93929ms diff --git a/internal/provider/fixtures/datasource_subaccount_role_collections.yaml b/internal/provider/fixtures/datasource_subaccount_role_collections.yaml index 3415601b..cccee436 100644 --- a/internal/provider/fixtures/datasource_subaccount_role_collections.yaml +++ b/internal/provider/fixtures/datasource_subaccount_role_collections.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0e7858d9-0317-a357-fcec-59cf481b6b3b + - 7507549e-3aea-290a-9223-e86c93ddc003 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 07:33:02 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ffe2fe64-1df3-4057-7d83-9f4601ebc369 + - c56557cb-e174-4508-5a76-ac92d1dfcc6f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.961893ms + duration: 475.327672ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f91f1829-9615-aee0-9fc7-7d0a8e3f3a09 + - 7cf0e7fd-cece-9d19-7b01-0b062b1f50ab + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:01 GMT + - Tue, 01 Aug 2023 07:33:02 GMT Expires: - "0" Location: @@ -116,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -125,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7ed95d05-be03-4bb3-5730-73ff758f4d02 + - dacaffd5-d7b7-40ec-7c21-429138b2bd97 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 193.181474ms + duration: 228.256251ms - id: 2 request: proto: "" @@ -150,8 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f91f1829-9615-aee0-9fc7-7d0a8e3f3a09 + - 7cf0e7fd-cece-9d19-7b01-0b062b1f50ab + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -177,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -192,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 03029992-054a-4ff7-7cc8-647ff6187acc + - a9c915b4-0360-4ca4-42d0-0b17495c6f61 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 123.040843ms + duration: 127.497435ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ec366caf-2b56-3a7c-edf9-dd96476b3b20 + - f8b98393-f312-e3b3-68d3-eff5bc6f0988 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -232,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:02 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -257,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0580131-b903-4345-67ff-df2c9f932797 + - 019461c3-aba2-4fbe-4f81-c14d0244c22c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 332.963414ms + duration: 444.986868ms - id: 4 request: proto: HTTP/1.1 @@ -280,8 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8fd314a9-80de-33ec-c91e-716ac81dce64 + - 222c15d6-f7fc-997d-8a82-0132d70dcde1 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -305,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:03 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Location: @@ -318,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -327,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 206f6ba3-0006-4aae-57cd-5e870de28a21 + - 5e1a43f7-265f-4f7d-4eb5-3b127f883f02 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.022468ms + duration: 184.015577ms - id: 5 request: proto: "" @@ -352,8 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8fd314a9-80de-33ec-c91e-716ac81dce64 + - 222c15d6-f7fc-997d-8a82-0132d70dcde1 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -379,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:03 GMT + - Tue, 01 Aug 2023 07:33:03 GMT Expires: - "0" Pragma: @@ -394,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 61da15f4-a08f-4e7c-6d7b-f416e4ffc911 + - a26ece2c-3ab6-4a0e-5448-a2523dd8eb5c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 97.120838ms + duration: 115.705247ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1754c0f8-5a38-de15-ffea-f090145a5285 + - 499638ab-f828-158f-e7b5-5364c7d2bf3c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:04 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -459,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 07530886-04ea-404a-6e68-a6aa98f9360b + - 4fe0f3a5-7289-42d5-52d3-537931cf00fb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.598273ms + duration: 393.035533ms - id: 7 request: proto: HTTP/1.1 @@ -482,8 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 89d36eab-09ef-76c2-e542-d5e100155703 + - 5d78095f-873d-73b7-aa71-2196072bf97c + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -507,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:05 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Location: @@ -520,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -529,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f976b47a-df69-490b-7541-6ba90ec665d7 + - fe72baee-9707-4d16-553d-3a06fd13169c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 211.304104ms + duration: 205.746996ms - id: 8 request: proto: "" @@ -554,8 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 89d36eab-09ef-76c2-e542-d5e100155703 + - 5d78095f-873d-73b7-aa71-2196072bf97c + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -581,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:05 GMT + - Tue, 01 Aug 2023 07:33:04 GMT Expires: - "0" Pragma: @@ -596,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5e0b521b-4a8e-4c41-7c31-3da7dc128fb3 + - dcbb5763-3408-49b6-41b4-22da129baa27 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 71.281587ms + duration: 92.551482ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 655311b7-f2b3-eb97-dac8-23115fbf6381 + - 480304dc-fd94-1e1d-ecda-f505f046c50c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -636,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:05 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -661,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8cc0b15b-dd71-464b-4243-51cf701af459 + - e5749214-ec8c-426c-6f3a-83ea6377514b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.154017ms + duration: 391.388796ms - id: 10 request: proto: HTTP/1.1 @@ -684,8 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7124593c-a490-1877-5dad-da10e08e7062 + - 3e3b7041-6d37-8a7d-6863-b7474e5ade7c + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -709,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:06 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Location: @@ -722,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -731,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f44b236a-ee54-4547-4e95-2af99ad8ae70 + - 0e15403d-550a-4558-79e3-34044b12ff7c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 156.54772ms + duration: 191.83739ms - id: 11 request: proto: "" @@ -756,8 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7124593c-a490-1877-5dad-da10e08e7062 + - 3e3b7041-6d37-8a7d-6863-b7474e5ade7c + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -783,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:06 GMT + - Tue, 01 Aug 2023 07:33:05 GMT Expires: - "0" Pragma: @@ -798,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 17ddcae4-5447-4a5f-4ad8-dc81333fd00e + - 055d540f-b008-436d-4e89-070270223b92 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 163.291583ms + duration: 79.432821ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae1d2a41-8dde-7816-0e0d-985917fb145c + - 8315ca62-5057-7da6-27d8-6082ae157b20 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -838,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:07 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Pragma: @@ -863,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0f86ded8-399f-4cb3-4391-f618753874a7 + - ecf67737-f4e2-457f-6053-eea973c8fedf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.216993ms + duration: 292.583093ms - id: 13 request: proto: HTTP/1.1 @@ -886,8 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14743648-aae5-d760-02e8-eb8e24c11c26 + - 01fa3ef7-a333-41c2-5d94-c0ee323c6ef1 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -911,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:28:08 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Location: @@ -924,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -933,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2bf3d934-29f7-47c2-5669-42a46322a215 + - d3f21105-b518-4630-6276-deb11370f479 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 165.985962ms + duration: 204.610695ms - id: 14 request: proto: "" @@ -958,8 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14743648-aae5-d760-02e8-eb8e24c11c26 + - 01fa3ef7-a333-41c2-5d94-c0ee323c6ef1 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -985,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:08 GMT + - Tue, 01 Aug 2023 07:33:06 GMT Expires: - "0" Pragma: @@ -1000,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f5c8b779-93d7-485e-47f3-8b979fd231ea + - fe4fdf3c-63b6-4a52-5a22-2fc905ea14a6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 76.687882ms + duration: 83.1363ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 01eef036-0e10-21b7-1ce0-4d6d09d9172e + - be8d21bc-0492-17f6-1dee-e7a0167b60d5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1040,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:09 GMT + - Tue, 01 Aug 2023 07:33:07 GMT Expires: - "0" Pragma: @@ -1065,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8a585858-861d-49d5-4f1d-5505d2964d55 + - 934b4ee0-62be-45f2-6622-6a6038754dc4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.925925ms + duration: 314.387187ms diff --git a/internal/provider/fixtures/datasource_subaccount_roles.yaml b/internal/provider/fixtures/datasource_subaccount_roles.yaml index f0bea3db..1fc32888 100644 --- a/internal/provider/fixtures/datasource_subaccount_roles.yaml +++ b/internal/provider/fixtures/datasource_subaccount_roles.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a42758ad-c769-85a8-bbaf-70a980cdc9e7 + - 549115f9-6b7e-3b47-fe46-7260857c980a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:51 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4958f0c2-c0cb-46bc-6ed2-89138aa3c92e + - f471a9c8-b186-4d86-592c-625ae77cb359 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 972.11254ms + duration: 299.602955ms - id: 1 request: proto: HTTP/1.1 @@ -78,8 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e232b12e-602b-b33b-a422-e2a9c3e86ba5 + - fc78376b-ad4a-2124-57d2-f63ff20f79c3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Location: @@ -116,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -125,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d3e6520d-00b9-4773-705c-e6349e717073 + - 13bf1f00-e77a-4d64-40c5-7f1890c71023 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 189.204169ms + duration: 160.343232ms - id: 2 request: proto: "" @@ -150,8 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e232b12e-602b-b33b-a422-e2a9c3e86ba5 + - fc78376b-ad4a-2124-57d2-f63ff20f79c3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -170,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' + body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:52 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Pragma: @@ -192,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1f8d7588-7c0f-453e-6f5a-dd9cfd4b85fd + - ac5d32d5-f7a2-4683-7b72-1f87b5b8599f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 148.476244ms + duration: 127.00118ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e459ff17-873c-783e-c2a8-5b1ac0ce8e9b + - b585d69a-f168-8c48-a990-ff77b971422e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -232,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Pragma: @@ -257,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b224b64-6190-4111-5db0-926fbfb007db + - 0dc5178a-3f18-489d-507e-902b5a0bcc75 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.513816ms + duration: 284.619356ms - id: 4 request: proto: HTTP/1.1 @@ -280,8 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4a62cfc4-9ff2-a01b-bf85-2e0e6ac44056 + - 1d2cd6f4-b73e-2772-f84d-e79a0e2b112f + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -305,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:53 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Location: @@ -318,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -327,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 62a7b647-1705-4040-708d-1ab5ac098e17 + - fadf7557-6f0b-4a5b-5d5b-c49d9d1db04a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 167.065464ms + duration: 276.652025ms - id: 5 request: proto: "" @@ -352,8 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4a62cfc4-9ff2-a01b-bf85-2e0e6ac44056 + - 1d2cd6f4-b73e-2772-f84d-e79a0e2b112f + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -372,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' + body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:54 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Pragma: @@ -394,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 116a48bb-0c10-4966-727d-44bc95b2c118 + - 0faed3de-c02e-4554-520e-ef27b28821c0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 122.741574ms + duration: 125.306913ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ca254595-808a-5bf4-a688-907d7551138c + - 85040f9e-3909-6bb5-6cee-253497346838 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Pragma: @@ -459,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 12231c2b-e615-4aae-78bf-b4c353e2a53a + - fda0c83e-77c5-41c3-70cb-b51e44a9fdbc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.721157ms + duration: 194.019014ms - id: 7 request: proto: HTTP/1.1 @@ -482,8 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b914d7f-c2b1-9dee-3a1b-0c2e332932de + - 236e1c52-4900-4a3f-870b-eb84bf684e0e + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -507,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:55 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Location: @@ -520,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -529,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b29475f2-68eb-4b58-6470-9901dac00074 + - 1e29f626-9503-42ff-6bea-b4a2a06ca12f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 155.900457ms + duration: 236.043265ms - id: 8 request: proto: "" @@ -554,8 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b914d7f-c2b1-9dee-3a1b-0c2e332932de + - 236e1c52-4900-4a3f-870b-eb84bf684e0e + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -574,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' + body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Pragma: @@ -596,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6883f487-7eee-48ea-6fcb-171c3f01f20b + - 1058867a-f3d9-45de-4119-d882bf8cc783 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 148.910462ms + duration: 120.891202ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b1dd21fe-a209-93e0-d557-6b5bf64697b5 + - 7d84949f-5ad6-71c9-72d9-0fe3a07f2548 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -636,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:56 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Pragma: @@ -661,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8a3b8eb8-e114-4141-46c3-1f9af78dae5f + - de0eae6e-8cac-473e-7ea5-f064e9fe3fb5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 331.236783ms + duration: 270.717778ms - id: 10 request: proto: HTTP/1.1 @@ -684,8 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4a01703c-38b3-62eb-6389-bdad355cb13d + - deaa9bc0-ff04-3e55-b2db-8903d05ad3a3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -709,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Location: @@ -722,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -731,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ed119baf-f995-48b1-55c6-a82e6ad78011 + - fda8909e-c293-4354-581f-63f8cf5fab17 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 162.997499ms + duration: 129.691319ms - id: 11 request: proto: "" @@ -756,8 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4a01703c-38b3-62eb-6389-bdad355cb13d + - deaa9bc0-ff04-3e55-b2db-8903d05ad3a3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -776,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' + body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:57 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Pragma: @@ -798,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6c8c2199-16c1-42f8-52e1-6420b2274ae5 + - fffc80e7-f037-4355-59a7-d63820e135a5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 125.176234ms + duration: 112.12884ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 445b03a3-dc24-5340-f700-b02a393b915a + - de23ce45-0309-6d5f-0a80-df62b6d75997 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -838,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:34:33 GMT Expires: - "0" Pragma: @@ -863,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 057c5ec4-029b-43a5-6a8f-c4cdbeb77898 + - 75adae59-219f-4011-79c4-7fe57ec9470a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 322.579285ms + duration: 397.711698ms - id: 13 request: proto: HTTP/1.1 @@ -886,8 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a7561c8-9153-e983-a348-31f8a05126b0 + - d2ad5fb5-e21a-a5e5-9321-a94d32b7441a + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -911,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 24 May 2023 09:27:58 GMT + - Tue, 01 Aug 2023 07:34:33 GMT Expires: - "0" Location: @@ -924,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -933,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9db076dd-02a6-444f-71e1-ff185c3354c1 + - 345cc843-677c-4677-7dcc-8108f15032b4 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 166.165384ms + duration: 152.053484ms - id: 14 request: proto: "" @@ -958,8 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a7561c8-9153-e983-a348-31f8a05126b0 + - d2ad5fb5-e21a-a5e5-9321-a94d32b7441a + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -978,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","sapcloudalm!b32816","spc-integration!t1"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' + body: '[{"roleTemplateName":"Cloud_Connector_Administrator","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Administrator","attributeList":[],"description":"Operate the data transmission tunnels used by the Cloud connector","scopes":[{"description":"Operate the data transmission tunnels used by the Cloud connector","name":"connectivity!b10.manageSCCTunnels"},{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Cloud_Connector_Auditor","roleTemplateAppId":"connectivity!b10","name":"Cloud Connector Auditor","attributeList":[],"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","scopes":[{"description":"View the data transmission tunnels used by the Cloud connector to communicate with back-end systems","name":"connectivity!b10.readSCCTunnels"}],"isReadOnly":true,"appName":"connectivity"},{"roleTemplateName":"Destination_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Administrator_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Administrator Instance","attributeList":[],"description":"Manage destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance Level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Administrator","attributeList":[],"description":"Manage destination certificates","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Manage certificates on subaccount level","name":"destination-xsappname!b9.subaccount.manageCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Administrator","attributeList":[],"description":"Manage destination certificates on instance level","scopes":[{"description":"Manage certificates on instance level","name":"destination-xsappname!b9.instance.manageCertificate"},{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Instance Viewer","attributeList":[],"description":"View destination certificates on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Certificate_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Certificate Viewer","attributeList":[],"description":"View destination certificates","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Administrator","attributeList":[],"description":"Manage destination configurations","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Manage destinations on subaccount level","name":"destination-xsappname!b9.subaccount.manageDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Administrator","attributeList":[],"description":"Manage destination configurations on instance level","scopes":[{"description":"Manage destinations on instance level","name":"destination-xsappname!b9.instance.manageDestination"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Instance_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Instance Viewer","attributeList":[],"description":"View destination configurations on instance level","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Configuration_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Configuration Viewer","attributeList":[],"description":"View destination configurations","scopes":[{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Administrator","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Administrator","attributeList":[],"description":"Manage signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Manage subaccount trust","name":"destination-xsappname!b9.manageSubaccountTrust"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Subaccount_Trust_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Subaccount Trust Viewer","attributeList":[],"description":"View signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Read subaccount trust","name":"destination-xsappname!b9.readSubaccountTrust"},{"description":"Read certificates on subaccount level","name":"destination-xsappname!b9.subaccount.readCertificate"},{"description":"Read destinations on subaccount level","name":"destination-xsappname!b9.subaccount.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Destination_Viewer_Instance","roleTemplateAppId":"destination-xsappname!b9","name":"Destination Viewer Instance","attributeList":[],"description":"View destination configurations, certificates and signing keys for SAML assertions issued by the Destination service on instance level","scopes":[{"description":"Read certificates on instance level","name":"destination-xsappname!b9.instance.readCertificate"},{"description":"Read destinations on instance level","name":"destination-xsappname!b9.instance.readDestination"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"destination-xsappname","appDescription":"Retrieve and manage destination configurations, associated certificates, and signing keys for SAML assertions issued by the Destination service."},{"roleTemplateName":"Subaccount_Admin","roleTemplateAppId":"cis-local!b2","name":"Subaccount Admin","attributeList":[],"description":"Role for subaccount members with read-write authorizations for core commercialization operations, such as viewing subaccount entitlements, and creating and deleting environment instances.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Subscribe or unsubscribe to a multitenant application in a subaccount","name":"cis-local!b2.subaccount.application.subscription.update"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Create environment instance entity","name":"cis-local!b2.subaccount.environment.create"},{"description":"Delete environment instance entity","name":"cis-local!b2.subaccount.environment.delete"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Administrator","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Administrator","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Auditor","roleTemplateAppId":"service-manager!b3","name":"Subaccount Service Auditor","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Viewer","roleTemplateAppId":"cis-local!b2","name":"Subaccount Viewer","attributeList":[],"description":"Role for subaccount members with read-only authorizations for core commercialization operations, such as viewing subaccount entitlements, details of environment instances, and job results.","scopes":[{"description":"Get cloud management events on the local region","name":"cis-local!b2.event.read"},{"description":"Get status of users jobs","name":"cis-local!b2.job.read"},{"description":"View all multitenant applications to which a subaccount can subscribe","name":"cis-local!b2.subaccount.application.subscription.read"},{"description":"Get assigned entitlements for a subaccount","name":"cis-local!b2.subaccount.entitlement.read"},{"description":"Get environment instance entities","name":"cis-local!b2.subaccount.environment.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"cis-local","appDescription":"Management of your environments and subscriptions to multitenant applications."},{"roleTemplateName":"Subaccount_Service_Admin","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Admin","attributeList":[],"description":"Administrative access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to manage Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.manage"},{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to manage platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.manage"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to create or delete service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.manage"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to provision, update and delete service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.manage"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"Subaccount_Service_Viewer","roleTemplateAppId":"service-manager!b3","name":"Subaccount_Service_Viewer","attributeList":[],"description":"Read-only access to service brokers and environments on a subaccount level.","scopes":[{"description":"Permission to read Service Brokers only on a subaccount level","name":"service-manager!b3.subaccount.broker.read"},{"description":"Permission to read platforms only on a subaccount level","name":"service-manager!b3.subaccount.platform.read"},{"description":"Permission to read service bindings only on a subaccount level","name":"service-manager!b3.subaccount.service_binding.read"},{"description":"Permission to read service instances only on a subaccount level","name":"service-manager!b3.subaccount.service_instance.read"},{"description":"Permission to read Service Offerings only on a subaccount level","name":"service-manager!b3.subaccount.service_offering.read"},{"description":"Permission to read Plans only on a subaccount level","name":"service-manager!b3.subaccount.service_plan.read"},{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]}],"isReadOnly":true,"appName":"service-manager","appDescription":"Service Manager"},{"roleTemplateName":"xsuaa_admin","roleTemplateAppId":"xsuaa!t1","name":"User and Role Administrator","attributeList":[],"description":"Manage authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS roles and role collections","name":"xs_authorization.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Change Identity Providers","name":"xs_idp.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Write permission for XS users","name":"xs_user.write","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."},{"roleTemplateName":"xsuaa_auditor","roleTemplateAppId":"xsuaa!t1","name":"User and Role Auditor","attributeList":[],"description":"Read-only access for authorizations, trusted identity providers, and users.","scopes":[{"description":"Enable account navigation","name":"xs_account.access","granted-apps":["*"]},{"description":"Read permission for XS roles and role collections","name":"xs_authorization.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"List Identity Providers","name":"xs_idp.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]},{"description":"Read permission for XS users","name":"xs_user.read","granted-apps":["*"],"grant-as-authority-to-apps":["cam-integration!t1","cis-central!b2","cis-local!b2","spc-integration!t1","sapcloudalm!b32816"]}],"isReadOnly":true,"appName":"xsuaa","appDescription":"Administration of authorizations, trusted identity providers, and users."}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 24 May 2023 09:27:59 GMT + - Tue, 01 Aug 2023 07:34:33 GMT Expires: - "0" Pragma: @@ -1000,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8205b9d3-c6b8-408f-5b68-a32833d60d72 + - 75e39e7f-af27-42c9-6146-ebaec95d9ffe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 164.205674ms + duration: 119.521061ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bd3539d9-420f-80d9-b1e9-961b8ad6c972 + - ce249c23-79f4-5b82-3c8a-bf83c4d703aa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1040,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 24 May 2023 09:28:00 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -1065,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5365242a-074d-4a46-5fad-32e154cc8b4d + - dfa4fdb4-3087-4371-4513-4711e0b24742 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 436.901584ms + duration: 333.5861ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_binding_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_binding_by_id.yaml index c97c85c8..4522f871 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_binding_by_id.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_binding_by_id.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3752f036-8081-5ba0-79f7-1534b6a54709 + - 485e3cab-1b6d-e6ef-176f-66c878d99bb3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:44 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d253b58c-35f7-4b3b-5dfa-e7972c35a456 + - 49fe6249-49f5-458c-7467-ccb7826fbca0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 464.2659ms + duration: 270.116435ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d32163f9-3c2b-63b2-e940-95e3ae47c14c + - 35bdf83b-f234-9057-8366-4d6e67dff88c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:44 GMT + - Tue, 01 Aug 2023 07:34:29 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 3518a0e7-c925-4d79-5fdd-2cd5b1376704 + - c5e95636-9b94-4dc5-61e7-57954ce3a09a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 224.4099ms + duration: 325.604561ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d32163f9-3c2b-63b2-e940-95e3ae47c14c + - 35bdf83b-f234-9057-8366-4d6e67dff88c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:44 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 89ff990a-6890-4517-69a1-b634c16efe92 + - 2a2f7c51-d3ea-49e0-60f9-cf74756dadc1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 231.0088ms + duration: 119.133844ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 056b4168-03fa-4f86-5f7b-618b3a5f93e7 + - 92f91a8d-a24a-de4e-bacf-157dca49aff8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:45 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 67e1fd1b-47f6-41f9-44d9-eb5d9edb93ee + - 5a2904c2-9d75-47af-70d5-b58fddce96e6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.0112ms + duration: 191.484699ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 37a26db0-49b0-abb9-c960-ffe3ce8cb8aa + - 33e0dc40-c735-b750-e4f2-7e86bc4828c8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:45 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6de24db3-60b2-4d5c-4036-09e454335467 + - 630343cf-415d-4463-71e8-54f37710534a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 207.844ms + duration: 155.483212ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 37a26db0-49b0-abb9-c960-ffe3ce8cb8aa + - 33e0dc40-c735-b750-e4f2-7e86bc4828c8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:45 GMT + - Tue, 01 Aug 2023 07:34:30 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fb6a7877-ed8d-4c06-609a-48dd66f40f4f + - 0646d6af-5020-4668-531c-4bcb0287a3df X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 101.3929ms + duration: 87.560928ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - adf59b58-d8b5-8589-a847-560b1c150fb0 + - b7c16811-a97d-ff9c-34e8-12a191052dbd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:46 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ce431dcc-cfad-4931-583a-9982dc31efd8 + - 862efaaf-49f7-4d67-569d-d32248f5b85c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 328.2633ms + duration: 278.122066ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7cc64ae7-b07e-f72f-36e6-4b4c28542550 + - aa906479-5213-e881-f64a-5d2428b8934c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:46 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4e3ed8a0-230d-43b3-79ab-3a9c4316a118 + - 03a9874d-9db9-4ffb-4bd7-304a144c233a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 166.3926ms + duration: 375.451714ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7cc64ae7-b07e-f72f-36e6-4b4c28542550 + - aa906479-5213-e881-f64a-5d2428b8934c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:46 GMT + - Tue, 01 Aug 2023 07:34:31 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bc1e22a1-fb5d-41b3-6315-ace5d078db2a + - c8d2201e-4e1a-477c-4179-3dd34bcbce9e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 127.3467ms + duration: 129.981378ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - df71b869-1243-fbd4-b776-e8ee1fa29a8c + - 0b8fd9b4-7c1f-2508-5c01-6cd7b43832d7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:46 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d74129ea-488c-4288-41f2-e0460122875a + - 8cbff9b2-4272-43ef-6d60-546ef1f2b94f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.6074ms + duration: 212.342157ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41843138-3855-ed8a-f77c-93b89037ce00 + - c22a4c76-877d-0411-db6d-a4ec7efaa1ce X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:47 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7fd50bf4-aa00-495d-6dd0-a8539b97c9c3 + - a6645ef2-9a2e-4245-63f8-83f6f4fc64f8 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 227.9592ms + duration: 131.450801ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41843138-3855-ed8a-f77c-93b89037ce00 + - c22a4c76-877d-0411-db6d-a4ec7efaa1ce X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:47 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d4b34e6b-2fe8-4312-40a3-cde502cff68b + - 0146ef39-133b-4f25-6285-d27316ade458 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 134.3271ms + duration: 97.622975ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eaba12e8-fab1-0127-89b9-c57d07185181 + - ebf6c6ca-7081-a2a6-92fe-4bb41d445548 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:47 GMT + - Tue, 01 Aug 2023 07:34:32 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 332322e4-323a-4a6e-725d-e12b5c9258e8 + - b8093651-7879-4441-7021-1a58f67382dc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.9826ms + duration: 259.998784ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8348e86c-c9f7-09f9-2e25-ee5e080308d9 + - cef091b6-a955-6cae-5655-2204d3c3f261 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:47 GMT + - Tue, 01 Aug 2023 07:34:33 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 132b7701-0079-4976-6e6c-96622eccfb58 + - fe9a6d4f-0bf4-4ca4-6093-f539de1fc986 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 182.4141ms + duration: 252.673272ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8348e86c-c9f7-09f9-2e25-ee5e080308d9 + - cef091b6-a955-6cae-5655-2204d3c3f261 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:47 GMT + - Tue, 01 Aug 2023 07:34:33 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1a0179e5-484b-4f62-4663-949a0d996465 + - 5ab86420-fbc2-4873-680b-a935b6d98c4e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 89.4275ms + duration: 90.638874ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a519ff09-ee0e-2f24-dca5-597482e7c92d + - d24db895-5444-92e7-f8c0-7786275e0e88 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:48 GMT + - Tue, 01 Aug 2023 07:34:33 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f6b8501d-8cdc-448b-786f-21d9131a4f41 + - 24464b5e-1158-49e4-780c-ae7b4c247ec2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.4018ms + duration: 278.506338ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_binding_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_binding_by_name.yaml index 8c540bb0..d439ea6a 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_binding_by_name.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_binding_by_name.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 424dd3c7-7d6b-0603-deb8-1ba55e316dc1 + - 3abb19ab-fd24-63c2-0f9e-3bea97f1dce8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:48 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 49d76298-08cd-4906-74c3-816823ebb39f + - 4f8f45a6-e763-4526-5ca3-0667ce5a047a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 352.8037ms + duration: 231.278258ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 881d96fa-0223-ce63-bdbe-1316a9b0284c + - d6d2d998-c536-61be-2f6f-5c718a69d706 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:49 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2ca4d4c6-e06f-4094-5627-996933250b27 + - 71de8807-caaa-49be-6786-ec8a8a75d4ee X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 203.4003ms + duration: 196.565511ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 881d96fa-0223-ce63-bdbe-1316a9b0284c + - d6d2d998-c536-61be-2f6f-5c718a69d706 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:49 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a12bcf0b-c34e-42c5-6743-7a2a8e009cb5 + - 1c35ac39-fe09-4fbe-4b68-6cdf789202c7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 116.6122ms + duration: 82.594248ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 25cac1ca-1cf1-692f-7b0d-4c978443bfb4 + - 02434a88-d453-0b40-d119-eb52546f879f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:49 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ffdb0969-85d9-466f-4660-82885eda9033 + - b7123d83-16fb-4fb1-6775-2126c0b544ca X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.8595ms + duration: 171.923968ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e38649af-7f70-0b5b-71e7-8713a0ff3c04 + - cbb90709-9886-9910-0d58-a8ac0b32e03d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:49 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ce41bf0b-eb65-4596-6b1d-fa609c6d6bf8 + - 0115931e-3ccf-44bf-6587-0ea7d052c80b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 178.1606ms + duration: 211.373927ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e38649af-7f70-0b5b-71e7-8713a0ff3c04 + - cbb90709-9886-9910-0d58-a8ac0b32e03d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:49 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3d299d25-e27f-4f42-5e4a-24f8f39570b4 + - ea353e8a-e074-4ba1-7955-f3c98244a518 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 115.7512ms + duration: 92.618085ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44178590-3415-d17d-5c75-efc600f5758a + - 52f0ff03-846e-85cd-124e-a2a942de732a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:50 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0e639896-948c-42b5-6578-8f9c738b9c8f + - 1acc3232-2ee3-4c0b-46d2-2b3b38261952 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 324.8822ms + duration: 436.504384ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e9e337de-ae64-6d13-c288-a10038ec2cae + - affbd5b4-5776-5627-2d3d-84e6408fbaa2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:50 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 29a832c3-3a1e-45ca-5cba-e87eff6c643d + - bbc53f74-f6e3-4b0d-7aa3-934969dadff2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 191.1863ms + duration: 309.943026ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e9e337de-ae64-6d13-c288-a10038ec2cae + - affbd5b4-5776-5627-2d3d-84e6408fbaa2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:50 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 31038753-5dd7-4d9d-4c8c-35ddc461370b + - 12e44489-cb94-47af-6720-b7ab33f2ba8e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 152.6055ms + duration: 109.073658ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 08a164f8-e6ad-a7f2-b094-907ce5d4d125 + - 73aa2aa2-4a69-2ade-816f-96bc9973abe2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:51 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 734f9cb7-cb46-4980-4f65-b1bd30aa6c74 + - f5076e91-796c-404f-7635-0c9d1e88ba49 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 339.4133ms + duration: 774.770602ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8463420-33d1-0100-54a1-0d6a22922e17 + - a1225492-c703-2011-6560-1d50bf88c6e5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:51 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 3e3ef672-c682-4f72-4bc3-ac8b790fa945 + - 4708612c-19c1-4d06-4c21-67be8847099a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 215.478ms + duration: 246.196517ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8463420-33d1-0100-54a1-0d6a22922e17 + - a1225492-c703-2011-6560-1d50bf88c6e5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:51 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9b52e815-cbfb-4e23-7447-baa2e46c64e1 + - f0b15688-f2f0-4ffe-673e-42102f78d0dc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 143.9025ms + duration: 91.871586ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 24746ca3-92bd-0073-c95d-b8617d5d37eb + - 4d5cd932-9fa9-c33f-2338-f3db6a0459ac X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:52 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 83c5af7f-c0f2-4c28-6560-a768e8443825 + - 4526a8e7-7879-4ea1-66b2-935ecb0a8c72 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 344.546ms + duration: 268.296556ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b64d121-f5d2-8438-c756-5ab6849bb4ab + - b4fbff2a-d616-d665-6208-af5046466084 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:47:52 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f5e57daf-65a0-4bbf-6d0b-9c2ef40bbcf9 + - ec27b562-9057-47e3-7df9-8b696e456cbb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 181.3632ms + duration: 139.683223ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b64d121-f5d2-8438-c756-5ab6849bb4ab + - b4fbff2a-d616-d665-6208-af5046466084 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:52 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - be023089-3c7c-485c-6084-31e1eec28e8f + - e703cdf0-9ac0-4b02-7b75-4c3d3d4142b8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 118.1749ms + duration: 112.377821ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 89334062-f2ce-7dda-e9db-a7a3cceb6911 + - a1c9f27f-4f33-8d08-4501-95a57ee80ba7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:47:52 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 26c247a4-ec82-4e5c-6ee4-be7e2f9b18f6 + - 60597b3c-ec0b-4f8c-681d-8e90cdcdb688 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.5669ms + duration: 271.980784ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_bindings.yaml b/internal/provider/fixtures/datasource_subaccount_service_bindings.yaml index 3749f9a2..aeb08b1b 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_bindings.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_bindings.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a01d217f-0741-5aba-e13a-b7b411eed282 + - 2545c787-0e80-da2f-3537-ce6058609829 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:07 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e0a0040b-852e-4dd7-721a-a6485072e7e5 + - 2bdd001e-cc99-47d3-7a73-a707ea794ea0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 580.6889ms + duration: 502.3999ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ff55db52-2495-5880-f0a2-076d0ad67f14 + - 77b82015-1696-f5fe-a685-3e53036d2d1d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:48:07 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 574e1369-7f71-448d-7969-d8c86b0656b0 + - 115e48fd-59e0-452d-47ca-8baf707797c7 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 218.0464ms + duration: 181.23738ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ff55db52-2495-5880-f0a2-076d0ad67f14 + - 77b82015-1696-f5fe-a685-3e53036d2d1d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:08 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0da4a565-5c24-41ee-63dd-447e00712693 + - 3754a986-4f27-40fd-49bd-414f33728601 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 199.5317ms + duration: 97.842368ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2cd70141-7254-c9f4-1237-8c65d411f73b + - fdd8562e-96d2-a968-e6a4-189245999c3f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:08 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4aa531d2-3dfd-44c2-492a-c17f5a1fc9d5 + - 36a7cc5b-fa31-4696-41cd-78951e875781 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 395.097ms + duration: 268.669822ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 594cdb82-07a8-e524-5d25-480c9ab01477 + - fa3266f4-7c3c-9420-7de1-51d95c9323fe X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:48:08 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c2bb2fd2-9e92-4793-6b3a-34f6347cc7f8 + - fe3825b6-9902-4668-53a3-5df6fdf20eb7 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 192.8225ms + duration: 153.839514ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 594cdb82-07a8-e524-5d25-480c9ab01477 + - fa3266f4-7c3c-9420-7de1-51d95c9323fe X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:08 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 45bbe911-d558-482d-6127-3cadd9dff17c + - 014d34c9-17e9-45ed-7bf4-02ac1838f1e9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 118.3247ms + duration: 98.069119ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d1ce21f9-6898-eea9-1c26-5afc188813c0 + - 2398f132-1dd6-7e72-e4d3-73cdfda9d748 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:09 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 36e867ba-8e9c-4b60-74f6-0114e2c32cc7 + - 0b34f2fd-60d3-450e-7204-4e733253ba5e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 405.1135ms + duration: 191.639385ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4610c20a-2856-5f3f-ecf4-67b38d0630dc + - 080fc8db-e186-098b-2227-88560f7d91c5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:48:09 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 3119d128-9bd8-4fe3-5e41-ba13f0cae334 + - f2192c75-8b29-4be3-58dc-233ec9504af3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 185.1115ms + duration: 138.178785ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4610c20a-2856-5f3f-ecf4-67b38d0630dc + - 080fc8db-e186-098b-2227-88560f7d91c5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:09 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1494079d-8942-4c22-64ec-c570d76bfb57 + - 05cea046-9dd5-4ea3-6961-82eea42f28e3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 108.8457ms + duration: 109.857818ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a629aea8-ce17-b9a4-5caa-2519df8e956b + - abd674cf-44fe-0fd6-8535-abc1b3b4df17 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:10 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6bd1499c-18ec-45ca-5de2-90ac7e151d48 + - 4b09bbe9-1024-44a1-5ea2-d62b7f921119 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.1008ms + duration: 335.984941ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cc177a83-6ad8-f61a-d5f9-a896a97862a1 + - 43baf695-7909-c196-cec1-fc2ddf022f5d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:48:10 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e155a665-f5c8-4291-6e33-f22223fbd263 + - 9bb428cb-64f2-46e1-446e-b1f0c7a51aa0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 166.0046ms + duration: 332.465987ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cc177a83-6ad8-f61a-d5f9-a896a97862a1 + - 43baf695-7909-c196-cec1-fc2ddf022f5d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:10 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 609d5550-d7c2-4f79-502b-549c42ab1f68 + - c1cba72a-00e2-4480-5d25-35fcd0be4e18 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 100.4085ms + duration: 95.506276ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c4ed80d1-ee4e-6ede-47d3-357c38ee941b + - b3f92925-0a85-3a92-ecf9-bb24854adbc2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:10 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bae4f9ee-ae0d-4127-46da-2a706817d2c4 + - 2ee4d32c-696a-44df-5b51-dd13a1906a63 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.9599ms + duration: 172.840564ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d7c9b3b2-ec12-84e6-6667-d364b7a0aefe + - 45b47873-a713-5ecf-b323-5f7fb6a8c276 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 13:48:11 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6de0ee37-b74e-4c82-44e4-f846cf162a7a + - edf09870-37fd-489d-63db-f113ae46c31e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 213.0551ms + duration: 151.678876ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d7c9b3b2-ec12-84e6-6667-d364b7a0aefe + - 45b47873-a713-5ecf-b323-5f7fb6a8c276 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:11 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 097604eb-0765-48f8-6408-7f7a631a0b80 + - 164e6bde-c99d-4f12-463a-9812d9706b8a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 116.2793ms + duration: 84.187708ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - adee9c53-79cd-9083-b0ad-0269ea2fb169 + - d3bad3a1-2358-b731-621a-2c888461d540 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 13:48:11 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e50e863f-732a-48f3-4cbc-26e126cb9c3e + - fcad6588-edc7-4d3f-64b6-c1652b4b3898 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 359.3413ms + duration: 201.449757ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml index e0718edf..dc075f0d 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 25e1f067-25c5-c3eb-9924-83acb397caf2 + - cc7a6db4-6833-0034-011d-a48c37a4aefc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:19 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - adfb8b18-38c2-46ef-5e94-f450e943fc99 + - a77e891c-15ba-4325-492d-74cb97868c68 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 946.8768ms + duration: 476.926905ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - abb7c462-6c26-5a7d-f414-bfea1e50054d + - ffafab23-121e-cecf-96a2-fe46573677ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:19 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - bf01203d-a890-417c-48f8-362437db4be6 + - e0495533-a3e3-4855-4467-91857010f2cc X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 219.3685ms + duration: 157.804334ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - abb7c462-6c26-5a7d-f414-bfea1e50054d + - ffafab23-121e-cecf-96a2-fe46573677ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:20 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ee2cef36-1480-4816-7a49-c2f08451a6d0 + - 38cd7d72-2cde-4099-75ae-7d5620d54e05 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 620.0829ms + duration: 114.481534ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 07f87332-5c1e-bcde-c39c-c16094183e3d + - bf66ce45-6604-bb46-b7fb-6db410ad8162 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:20 GMT + - Tue, 01 Aug 2023 07:34:34 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e617846a-95da-43dc-60a4-8f0f665841eb + - 538d524a-b5d0-452c-50dc-7ec6d66dedda X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 452.6319ms + duration: 302.585012ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 168fd326-0855-a320-8025-703330146a8c + - f50536e9-8c8a-9a75-e86b-de7821a50c3d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:20 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - be9bddc7-fe83-4a2d-66eb-69c4d23d9601 + - b4ba4acd-7287-4560-634b-5db6645cc03d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 242.9591ms + duration: 190.769734ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 168fd326-0855-a320-8025-703330146a8c + - f50536e9-8c8a-9a75-e86b-de7821a50c3d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:20 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d49463ca-0be3-4f44-7fca-b39f6cccdf6e + - 2dbad340-4553-4adf-78ad-d08550a451eb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 157.8833ms + duration: 97.854599ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a022dc8e-34a2-e51b-52f7-d1c859f15a26 + - 44dad341-ccec-3264-1eeb-3d8644a9d49d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:21 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 87c66ddc-76a2-4484-577a-ff7539e21995 + - 473194db-b55c-4d01-691b-fbe5fa724500 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 399.3206ms + duration: 258.799823ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d1713b8a-be28-7831-37d9-008788a589c3 + - 046b50cb-7b78-182a-5498-af1c75843460 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:21 GMT + - Tue, 01 Aug 2023 07:34:35 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9faf576c-5e62-42a8-42f4-53bafcd1af95 + - 739ab303-62f0-4e76-5c11-09d29bdedffa X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 229.6761ms + duration: 202.954822ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d1713b8a-be28-7831-37d9-008788a589c3 + - 046b50cb-7b78-182a-5498-af1c75843460 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:21 GMT + - Tue, 01 Aug 2023 07:34:36 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 619cf459-4571-4b13-422e-25e42289f1b3 + - e7c997be-373a-445a-56da-b457e7648750 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 115.974ms + duration: 111.813114ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7a1fcb11-bcc3-65f6-a2d9-748d57e9505e + - e2ecacaf-9035-c434-2e66-611de18d50ab X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:22 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 32aab6e6-d2f3-4b16-4922-3cd1f0446e6c + - 325c0885-f708-4d49-4090-f3d9641915a0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 370.809ms + duration: 782.283058ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bbe59984-be61-7501-c2ff-d11043d1dcfb + - 805af58d-8c19-5824-a42f-7cc6297c5554 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:22 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 68750dfe-8414-4896-6e85-c28f354dd944 + - 282b53d2-2aaa-41cd-66b8-7c20239ba57d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 193.5659ms + duration: 160.191567ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bbe59984-be61-7501-c2ff-d11043d1dcfb + - 805af58d-8c19-5824-a42f-7cc6297c5554 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:22 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bdf307eb-6a8f-42dd-6927-b78b096fa20d + - d658b5f3-7562-47c5-6db6-66943a677f45 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 125.9487ms + duration: 86.354423ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7f20c663-c1d1-dad0-8181-b4c59ecb75a4 + - 4367f97e-2c6b-af47-aad6-3c9b2e8b6be3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:23 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c46228c9-fc6b-4fac-4c4b-76b93ad587d6 + - 078f3c6f-9588-47f3-4331-cbbb011eadec X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.3214ms + duration: 279.117034ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fd658c5b-8c30-d905-18ab-d2ac6f8c603c + - d44bcdc4-87cc-c225-8586-1b1716209ac7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:23 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e4bdf2a3-0e2f-44a4-5963-d665ed2d3d4f + - f0427cf0-40dd-4403-48d5-3739e10433c1 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 201.3857ms + duration: 174.63437ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fd658c5b-8c30-d905-18ab-d2ac6f8c603c + - d44bcdc4-87cc-c225-8586-1b1716209ac7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:23 GMT + - Tue, 01 Aug 2023 07:34:37 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6b4ac678-d86b-417a-64dc-3d1a0508ae07 + - f2846d4f-db0e-47b5-722c-c6dd1fef95d7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 123.6258ms + duration: 87.436865ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6f812f2b-577d-62e0-aa8d-6bc301bcc8e6 + - e2b78a7f-72e2-f28f-1b57-0b4973e76856 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:23 GMT + - Tue, 01 Aug 2023 07:34:38 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5a6154cd-f50c-479a-65fb-74e96cf5d97d + - d70df959-9a0a-47a0-441c-2487756aaf35 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.2389ms + duration: 273.783062ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml index 65fec256..e02e4894 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 968967b7-bc1e-6e45-b88e-1d0e09919a7b + - 2400630e-e104-eea1-b85b-b9142399ba9a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:24 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7b9b793b-1fa9-4f03-7bb0-e5c74fda2a22 + - 0464e496-3427-427b-66ec-73fbe61e5b48 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 409.5547ms + duration: 290.208594ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41eeec96-dff2-3552-bc5a-c89f64fa52e4 + - 7a0ffd3c-3954-2afc-37b5-3e07d1b0f3c2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:24 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8a608d3e-8530-4826-6f92-bff7805f7887 + - 56fde289-cbe4-47d0-4938-259073458b61 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 200.7844ms + duration: 155.426134ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41eeec96-dff2-3552-bc5a-c89f64fa52e4 + - 7a0ffd3c-3954-2afc-37b5-3e07d1b0f3c2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:24 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1a8d3083-b41e-4a14-6f6d-b25b0aa1459e + - 22cb0e85-df1f-4202-5c49-3cc74c5c6094 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 122.7707ms + duration: 88.278096ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 60b9d873-cbb5-89d3-c23c-b4b7f070dd3e + - 0370ed96-0053-3992-47fc-0433aae62bb2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:25 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6da30f05-f3a2-4963-5be1-3a72cb5f43e5 + - 17bf179e-12e6-4ebf-70b7-ee6eee347c80 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.0607ms + duration: 184.378603ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a2b1b787-79fe-a95d-f7f3-0ba799708c0e + - 5cd16cf3-5fff-9a63-2112-f25c5417f287 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:25 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 422b678e-c54a-444f-661e-7770dd655d08 + - dd4e07b7-c670-49a0-5f2c-df8c4250285e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 262.3894ms + duration: 151.605508ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a2b1b787-79fe-a95d-f7f3-0ba799708c0e + - 5cd16cf3-5fff-9a63-2112-f25c5417f287 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:25 GMT + - Tue, 01 Aug 2023 07:34:39 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 79442b34-2cf9-44b7-770a-9282c21e7de3 + - f941d4bd-9991-4d36-7956-ac84f2d6dc9e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 151.2087ms + duration: 88.301692ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e182f851-43d2-b984-f067-52c190d109ec + - 82c0cd39-eb0b-989a-470d-76a78a4fa64e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:26 GMT + - Tue, 01 Aug 2023 07:34:40 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 088c387c-db35-4308-405a-d20e3aa8598b + - 2d61c6e3-f39c-44bc-40ab-a8b95fe86d2c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.8553ms + duration: 322.516701ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 261662e3-60e3-e595-db62-9b24a6d924ad + - d2913039-6ec0-bd08-571a-f61e18c4a461 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:26 GMT + - Tue, 01 Aug 2023 07:34:40 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8fc098ee-03e0-4146-6001-df9b9638da27 + - 99c8766d-7a4c-4edb-649b-4c68bef74b05 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 220.8794ms + duration: 159.9534ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 261662e3-60e3-e595-db62-9b24a6d924ad + - d2913039-6ec0-bd08-571a-f61e18c4a461 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:26 GMT + - Tue, 01 Aug 2023 07:34:40 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bf6c2535-36f1-40eb-48ed-b673f9073144 + - e60ac865-6136-4eef-5187-e9c93506bf62 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 142.5367ms + duration: 95.084324ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2bd39ba3-9c3d-fa0c-1eaf-b9a6992eefb8 + - 7622472d-48f5-811f-a7d0-46f43cba7bb9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:26 GMT + - Tue, 01 Aug 2023 07:34:41 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7ce391d0-1d4d-4087-634a-75067fe591c7 + - 7ce9f6a0-160c-407b-4a61-7fccc80a23d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 337.8411ms + duration: 172.616235ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 902f8455-3d3b-21d0-bdec-d62e025b904d + - ecb3df97-8c4a-7f4f-da3a-d5543f9adcd0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:27 GMT + - Tue, 01 Aug 2023 07:34:41 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7ba17c4b-8083-4ba4-693f-7812f4df8c6c + - 281fbbe0-24f1-49c0-53a3-1e287a349640 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 197.314ms + duration: 179.803574ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 902f8455-3d3b-21d0-bdec-d62e025b904d + - ecb3df97-8c4a-7f4f-da3a-d5543f9adcd0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:27 GMT + - Tue, 01 Aug 2023 07:34:41 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3dbe2c39-efe7-425d-4b2b-bfb43bdfd4ee + - 556de193-f0bd-4b84-672e-45c1ffa4c21f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 123.0178ms + duration: 126.767545ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 23540e59-5599-6740-0b61-a4dbe7865fd8 + - 41baa1dc-825a-7f8b-7f31-6095b0fe45ef X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:27 GMT + - Tue, 01 Aug 2023 07:34:41 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 765db210-d0ac-4657-7a55-1c1f7fdce338 + - 006a7697-4279-4262-647d-6343f9a2709a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.4565ms + duration: 281.616426ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b671e24f-30b6-2c92-cfbc-1dd9f0cc4b36 + - 0934cb15-b530-3f3c-ec1d-c2be7defd396 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 13:02:27 GMT + - Tue, 01 Aug 2023 07:34:42 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2034e58c-bbe8-4ce7-60cb-18776ec6c548 + - d3221369-40b4-40c0-5d9e-32ca35fcb79a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 179.7315ms + duration: 162.620629ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b671e24f-30b6-2c92-cfbc-1dd9f0cc4b36 + - 0934cb15-b530-3f3c-ec1d-c2be7defd396 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:28 GMT + - Tue, 01 Aug 2023 07:34:42 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7a0fd062-f385-48b9-6007-4c14f2b5e48b + - ee9c0520-b0cd-4d18-4e1d-bf391de67b4d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 109.7336ms + duration: 112.290755ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e443561b-9707-a294-f79a-7e1ed20509b3 + - a5f6066d-f6eb-059f-a626-357fa5edb5f7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 13:02:28 GMT + - Tue, 01 Aug 2023 07:34:42 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 255717e0-0550-45c5-7357-0153bb90a658 + - bbf70587-7c19-484f-478f-6d521079920b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.5126ms + duration: 245.375084ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml index bc8a51f0..90ac1184 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aef4962e-eb62-8904-3e6a-8f0183d13e3a + - 259f4ca2-0198-f1f4-32d8-2e486a46eed1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:19 GMT + - Tue, 01 Aug 2023 13:03:45 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ee8718ea-40c8-456e-73df-8a3afc147f57 + - 7264f820-323d-4307-7336-6bb3f1abd9bb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 542.6288ms + duration: 755.464869ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33795b15-b338-e033-7473-18eb578f00c5 + - f4795817-cdd1-764d-de66-1ffe21b5f783 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:19 GMT + - Tue, 01 Aug 2023 13:03:45 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 437396c5-54f1-45ea-53f4-b67d9d8c25e1 + - 3f32f206-4f8d-4e46-74a9-cff6ef1932fa X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 226.5971ms + duration: 274.398128ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33795b15-b338-e033-7473-18eb578f00c5 + - f4795817-cdd1-764d-de66-1ffe21b5f783 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:20 GMT + - Tue, 01 Aug 2023 13:03:46 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f2accd1a-ad03-4515-76a1-8e12d6f602a9 + - 065d6465-81b4-472c-52d9-b46fccf68e7a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 221.8136ms + duration: 233.845533ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3b8345e0-4f62-e75c-48cc-c6c5bb7da151 + - 0f69172d-ff4a-41e2-fbf0-248fd8438a8d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:20 GMT + - Tue, 01 Aug 2023 13:03:46 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 62454418-9dec-43e4-5eec-43aaf412407e + - 44656282-8793-4c71-4a0f-b6da18ce41e6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.4928ms + duration: 280.510096ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eaa66328-ba47-4e51-69e0-2d167e409ebc + - c8fd497d-68e7-52dd-d65b-e0ec295199eb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:20 GMT + - Tue, 01 Aug 2023 13:03:46 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - aa28cf96-0ed9-4619-77f5-e45013f0ffc4 + - a4c2c86b-094c-41b0-5371-169989abf871 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.6394ms + duration: 196.167833ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eaa66328-ba47-4e51-69e0-2d167e409ebc + - c8fd497d-68e7-52dd-d65b-e0ec295199eb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:21 GMT + - Tue, 01 Aug 2023 13:03:46 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c3f30bcc-fe37-4d78-4dfe-6164b170f5f7 + - c424606c-b4ba-4425-6c6e-ece3c9c0b589 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 149.8559ms + duration: 163.939501ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bf5143a5-66b6-cf8c-0e1d-21380b2abe78 + - 0acb3dfe-5ed6-ed2a-6271-71f5abb7a618 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:21 GMT + - Tue, 01 Aug 2023 13:03:47 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - af32a800-7139-4e53-7b00-f2fac45d77ca + - 1c0150fa-be7d-40c5-7d68-af02561a1a45 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 428.6643ms + duration: 498.457381ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac83a038-070a-def5-29ed-c842f42a39b3 + - 955444a3-04eb-c92f-1ad8-590ccb00f39a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:21 GMT + - Tue, 01 Aug 2023 13:03:47 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 992a6d0c-635d-4d1b-700f-4b646dfbb49f + - cbdc1d08-7eac-4bf9-6d34-1cdad1a34d80 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 163.8055ms + duration: 189.379247ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac83a038-070a-def5-29ed-c842f42a39b3 + - 955444a3-04eb-c92f-1ad8-590ccb00f39a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:21 GMT + - Tue, 01 Aug 2023 13:03:47 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 18337ffe-ac49-4a14-536c-96bde5800256 + - 9fd56280-7c09-4f8b-7018-f564731ec520 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 134.8912ms + duration: 144.808518ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 300e10a4-51c2-12b3-7c2c-89886234245f + - 3147614c-5af4-dc3f-c526-9550d2aa53f3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:22 GMT + - Tue, 01 Aug 2023 13:03:48 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 81358b3d-d57f-45e2-764a-47a7845c98f8 + - 67791b2c-6c84-4d12-6c46-897ae124b7bf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 340.1022ms + duration: 292.181591ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d256501e-5d61-91c7-4180-8c37cd90c031 + - 72e28a07-9e9f-dfab-c8f2-a22ad2d2fcf5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:22 GMT + - Tue, 01 Aug 2023 13:03:48 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - bc992987-2986-43ce-6359-a9ab3ad0452b + - 423dc974-1727-4b43-540c-6b4083b7b97f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 229.4539ms + duration: 162.791872ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d256501e-5d61-91c7-4180-8c37cd90c031 + - 72e28a07-9e9f-dfab-c8f2-a22ad2d2fcf5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:22 GMT + - Tue, 01 Aug 2023 13:03:48 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 976df2fd-ea80-4208-59f0-c0e190e23cee + - aed486b0-0dc4-4ef0-7198-1ba538dfcb40 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 141.471ms + duration: 88.936288ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - db961ba1-6c4f-5616-e242-fd218fe1cc5a + - 9ea26e1a-fc51-95e4-6b47-6a0334f46f80 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:23 GMT + - Tue, 01 Aug 2023 13:03:49 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 808ec59e-c080-4c0a-6746-8f2a361588cd + - 46277c2c-44d9-444b-76db-d5d567dd8813 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 429.9488ms + duration: 294.8919ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 962287b4-573c-f83f-ef16-f0433fb20c05 + - fea7f5dd-1f70-134f-f5df-7e13ac05060a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:23 GMT + - Tue, 01 Aug 2023 13:03:49 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6b5e4924-ecd0-4c39-6b09-0ef001885057 + - 7c79ffcb-e86e-4ab2-4101-c25af7598227 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 225.5704ms + duration: 176.266554ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 962287b4-573c-f83f-ef16-f0433fb20c05 + - fea7f5dd-1f70-134f-f5df-7e13ac05060a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:23 GMT + - Tue, 01 Aug 2023 13:03:49 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 600b6221-93d8-4761-68a1-579be172e340 + - f64f60f4-d882-444c-4a7c-addce876fd96 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 113.7214ms + duration: 84.458265ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 228a1832-3628-d2fe-3214-3559e4b8fee6 + - 064b02cb-9ee1-2d04-c401-1f1a36b8d170 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:24 GMT + - Tue, 01 Aug 2023 13:03:49 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4074a96d-8268-4afc-5c1e-89768de38e63 + - 83b999ae-5216-4baa-5b1e-5f3dc756cc28 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.2609ms + duration: 307.769227ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml index d3399254..5ec13a66 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e60c7f3e-619f-dfcd-c896-ee51105b6198 + - 22f1737d-5bf2-3b51-5d42-745822439310 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:33 GMT + - Tue, 01 Aug 2023 13:04:00 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 21206d6f-1598-4160-7432-90648309c1ee + - 929ea599-f8c2-4c44-79a3-af62a0218510 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.5697ms + duration: 258.076462ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4b9257c8-f9f2-b9b8-540a-4b5f11d86289 + - 23b86e72-9655-9d58-6586-41b13828299f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:33 GMT + - Tue, 01 Aug 2023 13:04:00 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 306e5dc5-a2ae-462c-7099-69982c2631f0 + - 309676cd-8ced-4e58-599a-df9d7e02cf1f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 184.7267ms + duration: 238.485046ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4b9257c8-f9f2-b9b8-540a-4b5f11d86289 + - 23b86e72-9655-9d58-6586-41b13828299f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:33 GMT + - Tue, 01 Aug 2023 13:04:00 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8b2eee5-8f32-4ba4-7c2c-0e6e4e4aa3c6 + - ba7c90c5-21c2-4546-6c95-c585346e0bbf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 117.9665ms + duration: 97.428887ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d49e4395-01a1-4ebc-1d63-2449379ae3ec + - 7765fdd0-b429-f101-1168-8184559f4a8d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:33 GMT + - Tue, 01 Aug 2023 13:04:00 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 24201e1a-44e7-45ae-7052-ca53b74d8e1e + - 8010f194-11c1-4176-472c-770b759f5762 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 336.5487ms + duration: 218.773072ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dda752bb-8b03-cc68-54cc-12c2b83810fa + - e015b92e-972d-53e2-01bf-72dcf7c64e44 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:34 GMT + - Tue, 01 Aug 2023 13:04:01 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 22b76457-12ce-41bc-45df-43ad05b88f0d + - 6c6dfa87-92b1-40b6-6198-d91bd6f391df X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 215.8713ms + duration: 182.885187ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dda752bb-8b03-cc68-54cc-12c2b83810fa + - e015b92e-972d-53e2-01bf-72dcf7c64e44 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:34 GMT + - Tue, 01 Aug 2023 13:04:01 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1be83bce-c21c-4838-4001-634f723b8176 + - c15fc5e1-846a-4ffb-5d7e-a65943d35c6b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 128.7728ms + duration: 234.567409ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2896b526-4cc2-c5ba-390e-a6e5fb658546 + - 90822c3e-b285-4392-82a5-2b22b12e6b3e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:34 GMT + - Tue, 01 Aug 2023 13:04:01 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a6462a79-9de9-48d5-53ff-07c56b74c715 + - 59dd1cd2-8451-4d9f-67a9-2d6a6842de4c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.9463ms + duration: 228.795813ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2cf10455-791e-1308-3ea3-25f66dab1f5a + - 7cb3c44e-f93a-57a1-f3f6-487bbd04368a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:34 GMT + - Tue, 01 Aug 2023 13:04:02 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a4461376-8338-429e-45ba-bd913afb3544 + - 25bab01b-f31d-4dd6-7e6c-513e0c698dbf X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 193.7603ms + duration: 234.734175ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2cf10455-791e-1308-3ea3-25f66dab1f5a + - 7cb3c44e-f93a-57a1-f3f6-487bbd04368a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:35 GMT + - Tue, 01 Aug 2023 13:04:02 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cab4f29f-530e-4a1a-4394-166c07311662 + - 9bb3b1db-2450-4be3-7491-53a235333334 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 99.2254ms + duration: 90.002123ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da592eda-bfca-97c1-3f72-bfd592aebd2b + - cadc6dde-7535-1991-c74f-364d4d6ca16d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:35 GMT + - Tue, 01 Aug 2023 13:04:02 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 703f093c-fb7a-4b22-496c-ac0f2300e9ee + - eeac0410-cac2-4dcc-5b8b-0c584db66933 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 333.8345ms + duration: 417.32914ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ff420114-a2cd-3e63-21fb-20d0c3969e8b + - e9ed1c7c-9f31-77c5-c99e-b9869c8fce3a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:35 GMT + - Tue, 01 Aug 2023 13:04:03 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ca07053a-123b-4081-692a-e169abdc22f8 + - f05c1ec4-cf50-4562-4f55-f004fc57c488 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 185.8763ms + duration: 210.806196ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ff420114-a2cd-3e63-21fb-20d0c3969e8b + - e9ed1c7c-9f31-77c5-c99e-b9869c8fce3a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:35 GMT + - Tue, 01 Aug 2023 13:04:03 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 95922de9-2aad-4eab-7362-f1129914fbf4 + - 7f592d7a-cbfd-41b9-7d85-d39cdbe6b817 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 110.903ms + duration: 98.711361ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f8f98973-6f05-4404-b21f-b5097feb6bc0 + - 3f9966d5-89ad-8c17-2859-019045196786 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:36 GMT + - Tue, 01 Aug 2023 13:04:03 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d88e809-66a4-476e-74bd-040256e2854b + - c5330a5d-daa2-4215-6662-f74218baea36 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 349.8473ms + duration: 231.809536ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e1d5a30f-0b27-5089-a354-8ae5b527399d + - 7fc39d5b-404e-9568-d389-b711b22c101c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:36 GMT + - Tue, 01 Aug 2023 13:04:03 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7efacb96-2b04-424e-6eef-4d8e88e39abf + - 1bc97fbe-e2cd-4fb8-589a-f98057e69c20 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.189ms + duration: 149.431368ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e1d5a30f-0b27-5089-a354-8ae5b527399d + - 7fc39d5b-404e-9568-d389-b711b22c101c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:36 GMT + - Tue, 01 Aug 2023 13:04:03 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0186d831-2718-403e-50e4-5cb331ec3213 + - 510641d7-d2fc-4424-7caa-d900ed07fd90 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 119.2192ms + duration: 177.385124ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 507b3f67-511f-9aa7-0c31-7ce95b92e9ca + - 78c04cfc-96c2-9ce0-54aa-232e92359a3a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:36 GMT + - Tue, 01 Aug 2023 13:04:04 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 36dbf414-689a-4a55-5e49-c92523557c89 + - 63e0e1b7-749d-4b19-7351-116d3c795871 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 327.8458ms + duration: 333.965673ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml index 350a9752..248521f8 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1bb86678-6633-6892-ef2d-feda9b219e65 + - 25ab3f8f-fabe-ad33-0ed9-c75b0886b8f7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:24 GMT + - Tue, 01 Aug 2023 13:03:50 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4c2d1785-3072-4ec0-611d-eca252b1ad35 + - 99986a6a-3589-4ced-5e28-80884f98b863 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 368.4117ms + duration: 250.162265ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cab1f0a7-672e-8436-2a8c-571e5c3ba0f3 + - 40f8d231-24f4-eb26-3986-19dc0a19aa26 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:24 GMT + - Tue, 01 Aug 2023 13:03:50 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8137c967-f3f7-4bcb-76b2-d6d536d16219 + - 53646814-59ec-4443-4fb8-cc5b38ef468e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 191.0698ms + duration: 243.076604ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cab1f0a7-672e-8436-2a8c-571e5c3ba0f3 + - 40f8d231-24f4-eb26-3986-19dc0a19aa26 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:24 GMT + - Tue, 01 Aug 2023 13:03:50 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e39a0180-3f6b-419b-4601-a2b8cbb34045 + - 036ae25a-40af-4d56-51ca-6624c5c8f8de X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 140.5837ms + duration: 91.262721ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e2299720-771c-6e8c-d6ca-ec853d6f7334 + - c0923d96-6b44-dc65-398e-6d90147f144a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:25 GMT + - Tue, 01 Aug 2023 13:03:51 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c2d14912-0564-4a3a-6123-688cdef971c9 + - 2b03477b-52d0-448e-5132-46a6cf1e2baf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 374.8124ms + duration: 294.300057ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f43e9ce8-5459-73f3-78cd-d52e057c3d4f + - ba9aed10-b79c-63db-d984-a95449e54f4c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:25 GMT + - Tue, 01 Aug 2023 13:03:51 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 429eccdc-cd28-4c80-5075-ce590e10586a + - 145101f5-c9ae-48a1-635f-55eac1084501 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 199.0633ms + duration: 280.033482ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f43e9ce8-5459-73f3-78cd-d52e057c3d4f + - ba9aed10-b79c-63db-d984-a95449e54f4c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:25 GMT + - Tue, 01 Aug 2023 13:03:51 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb28143f-727e-4cac-46fc-87f5e71b5810 + - fdf59560-a21d-44d0-4606-f19caed2a046 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 137.6174ms + duration: 97.119915ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e793c706-7ec3-598a-4104-ab36cb83a95e + - 244eb96b-8061-1de6-e7e8-48b372c808c4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:26 GMT + - Tue, 01 Aug 2023 13:03:51 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fe1504bd-8c44-41df-63ef-2870e78288be + - dfe57123-0004-4043-55bc-ba33d36c5379 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.9889ms + duration: 209.217448ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 697aeb0b-e79c-ef5f-b69c-2d8431266045 + - 77aa9d80-55d5-1053-e361-dacbda26ba5c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:26 GMT + - Tue, 01 Aug 2023 13:03:52 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e19d4f1b-8da0-4398-6da9-b7c7b2d4f1ac + - 45f57742-0d71-4590-5fad-884e3f59ce8c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 196.7588ms + duration: 169.050806ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 697aeb0b-e79c-ef5f-b69c-2d8431266045 + - 77aa9d80-55d5-1053-e361-dacbda26ba5c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:26 GMT + - Tue, 01 Aug 2023 13:03:52 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 445ff39d-4059-4c66-4477-410e142ca99a + - 1bc06b16-3992-4447-5e8c-587d6d71adcf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 131.1504ms + duration: 184.022543ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dcd3db80-a200-8d76-7630-c91f898a5923 + - e2b5c10b-e4d8-7366-6ca3-ac0bddce60aa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:26 GMT + - Tue, 01 Aug 2023 13:03:52 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c006813e-a64a-49c7-5783-6a2a376ff30d + - e9b4cac0-87ad-4fb2-6082-3937ab415170 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 341.6786ms + duration: 294.6085ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 19d1178e-35a8-5510-903f-2578a82ef8c2 + - 7b49b942-889b-fa0d-e857-0956946c63b1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:27 GMT + - Tue, 01 Aug 2023 13:03:53 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 230f334d-2818-4ee6-4356-35819a1e7d45 + - 1d2b9dfc-92b6-4ff6-44c3-ef1f4522d6c1 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 205.2477ms + duration: 212.731337ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 19d1178e-35a8-5510-903f-2578a82ef8c2 + - 7b49b942-889b-fa0d-e857-0956946c63b1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:27 GMT + - Tue, 01 Aug 2023 13:03:53 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9848f9d5-f5e0-4d4d-5be3-570d47f04d99 + - cf2dcbd3-a584-481d-70e5-33d9fc34acac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 93.9734ms + duration: 117.839866ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2b999ba0-8a0e-ac1a-1dfc-d6f2b0440bdd + - 994bd71d-0448-9f25-959b-060b6c8420c3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:27 GMT + - Tue, 01 Aug 2023 13:03:53 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c4454954-5dcd-4e49-777e-2493fd38d15d + - 8f20a8ee-e821-4c37-4139-7f3f2af5e067 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.3487ms + duration: 290.947041ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 632064cc-3b95-e04d-e3b7-f53f912952ca + - 96705a16-d92c-d6ce-7d0f-172fb4fe0e1f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:27 GMT + - Tue, 01 Aug 2023 13:03:53 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 12b1273c-642c-441b-465e-bf204168aeca + - 33f236ef-952a-432d-66ef-e7b7f4b615e0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 163.2722ms + duration: 263.221314ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 632064cc-3b95-e04d-e3b7-f53f912952ca + - 96705a16-d92c-d6ce-7d0f-172fb4fe0e1f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:27 GMT + - Tue, 01 Aug 2023 13:03:54 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9a7d2784-a224-4bd1-5934-d6c47013735f + - 75859955-7333-4e81-731b-8ad0a919f9c3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 112.7753ms + duration: 643.843423ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a328228b-0b6a-c21b-b429-0b8a9137ec3f + - b2bbcb53-3b91-3450-71fc-56a1e786dd2e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:28 GMT + - Tue, 01 Aug 2023 13:03:54 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a1905996-1768-43bf-6a5a-f55c4dd30828 + - d3387465-082b-4491-7e1c-378f57770598 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.4795ms + duration: 218.404715ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml index 0e1fb34d..220758a5 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 86fe16a3-12cc-f53e-f004-f7fb12042cee + - 2c5aabbe-a5ed-b9ba-b5ed-a5e2f7a9022d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:28 GMT + - Tue, 01 Aug 2023 13:03:55 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2c3eed66-e286-4522-5826-73ddd491b5b8 + - c7c6e377-36ab-48da-598b-8b1c0a87cbc8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 335.1654ms + duration: 374.003955ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d452fa5b-271f-7b66-47e2-7e48119247ac + - eeeb6f30-972d-66b1-d59a-9878d4e2ce65 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:29 GMT + - Tue, 01 Aug 2023 13:03:55 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 74b49f3f-f4ae-4ac7-61ba-05f6c7160722 + - 8a5d04ca-0f33-452a-4efc-5822a3fca72b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 207.5546ms + duration: 192.220522ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d452fa5b-271f-7b66-47e2-7e48119247ac + - eeeb6f30-972d-66b1-d59a-9878d4e2ce65 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:29 GMT + - Tue, 01 Aug 2023 13:03:55 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 416a8bdc-2b67-49a7-5fbf-52663e693c28 + - d00457be-6b1b-4385-5ab6-eb93b9bf769b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 117.4802ms + duration: 94.016763ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f62d71b9-4070-9855-fd63-2253f08b3baf + - 4007b425-241d-4318-5fa7-8bd64add4b84 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:29 GMT + - Tue, 01 Aug 2023 13:03:56 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a8021326-2d85-4ff7-477c-0b07e3d8ef71 + - 4113254d-2370-4322-5675-6b03c6a678bf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.1999ms + duration: 299.267047ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e87492eb-04c8-81e7-7e73-ca2fef6322cf + - ebd9fd2d-c4c8-9847-7f5a-36faa851ff53 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:29 GMT + - Tue, 01 Aug 2023 13:03:56 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 81991f2b-7b88-458b-4d34-65ab77422947 + - 0d3508b6-aa9f-4023-5506-d0aaba89fc63 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 179.5093ms + duration: 206.339588ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e87492eb-04c8-81e7-7e73-ca2fef6322cf + - ebd9fd2d-c4c8-9847-7f5a-36faa851ff53 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:29 GMT + - Tue, 01 Aug 2023 13:03:56 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 04cc9429-7e7d-453e-54eb-b40dfe957b61 + - 68e77007-7fd8-4d1d-592c-acd6424ec23b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 121.264ms + duration: 170.65707ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 36ca3fe8-eb53-33f6-c250-f4643f7a976b + - 1e92a568-e791-67ac-2f47-306a4bb6c68a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:30 GMT + - Tue, 01 Aug 2023 13:03:57 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - baf1bb32-14d2-47fa-43ce-3299741f3b66 + - ba2f7f44-f341-4029-7aca-cb987847c967 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 352.3817ms + duration: 211.544746ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 80c72385-f7c7-f6f8-0520-9d07bd92ad03 + - e535fb80-0e11-1048-1afd-8af3d9bef7b2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:30 GMT + - Tue, 01 Aug 2023 13:03:57 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 218fe2a8-1e30-4a85-76a4-bb1ab22b9157 + - 27f39f4f-788a-4630-749b-6fcd68c97ed3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 203.4207ms + duration: 304.971549ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 80c72385-f7c7-f6f8-0520-9d07bd92ad03 + - e535fb80-0e11-1048-1afd-8af3d9bef7b2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:30 GMT + - Tue, 01 Aug 2023 13:03:57 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 041ff884-dd46-4c75-4072-a991a130dcfc + - 34c8a403-754a-4f2b-6450-7091e9d74c25 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 118.8107ms + duration: 98.313434ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7b8118b7-a993-c1e0-5d03-56a16a3c85d4 + - a368cd58-4a4d-7c58-35ea-4e1ec883b99a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:31 GMT + - Tue, 01 Aug 2023 13:03:58 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5758df18-3999-49ec-6cda-e815ad8106d4 + - c0efb19e-99d8-49f7-5de7-accd3db587b7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 350.8428ms + duration: 256.462625ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2766ccf7-4829-c2d0-0f22-cbdd4bc0df42 + - 6a1f5aa8-758a-720a-5eac-ce5b169fd33c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:31 GMT + - Tue, 01 Aug 2023 13:03:58 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a680a39c-9acc-4aaf-5214-e94845184db7 + - 11ea11c3-6b58-4508-5a22-086f6011481e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 203.4752ms + duration: 199.163885ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2766ccf7-4829-c2d0-0f22-cbdd4bc0df42 + - 6a1f5aa8-758a-720a-5eac-ce5b169fd33c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:31 GMT + - Tue, 01 Aug 2023 13:03:58 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4a65eb76-a34c-42d8-5fad-f740c8c4ab09 + - 6b5001e3-f7ba-4451-6ec4-ab0068babf7d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 101.5633ms + duration: 180.857636ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ef00d39d-0803-ad20-0afa-353f30dec860 + - 22e43482-931d-dd4c-d7e5-20a23dd9ee6a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:31 GMT + - Tue, 01 Aug 2023 13:03:58 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7936d26b-7670-4ece-628a-58e3013ddc68 + - 736d2c43-a444-4382-62f4-fb2daa2e69bb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 374.0214ms + duration: 335.229609ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a49f7560-5483-7957-0e55-18eb88fc5aa5 + - 2d99f5dc-2841-363d-d30e-6927ed46e29d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 12:55:32 GMT + - Tue, 01 Aug 2023 13:03:59 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 694b76c8-5f1d-46ea-6357-e55a2a3928ae + - 2757f2b4-4c3f-482f-7224-a6ba5599eacc X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 179.604ms + duration: 270.981026ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a49f7560-5483-7957-0e55-18eb88fc5aa5 + - 2d99f5dc-2841-363d-d30e-6927ed46e29d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:32 GMT + - Tue, 01 Aug 2023 13:03:59 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c7c803ca-7935-48b8-7f47-1d9b6835024f + - 2f93478d-a5d7-45ba-4d02-a09f412ae554 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 143.0365ms + duration: 164.898995ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 104a57e7-e932-eb76-0af0-c90c4deaf0f8 + - b0545d80-4077-7123-37dc-bf77adbb6e72 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 12:55:32 GMT + - Tue, 01 Aug 2023 13:03:59 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f95fd66f-ac12-4496-6bc5-a966e90b82b1 + - f565cbb5-04e9-4a1a-4e27-156285678d6b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 347.2284ms + duration: 225.651476ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml index f6c715dd..45c16ab5 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7b741de1-3190-8142-371b-910d1cd9bac6 + - 354220ec-9772-58b8-becd-46b26ffe48af X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:41 GMT + - Tue, 01 Aug 2023 07:33:50 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 479ee4d8-7843-416d-7d06-d766fb8e4db4 + - 794872c8-b01a-4e32-7dc5-938aa309447a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 553.3243ms + duration: 322.002248ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2dd7a6b1-df9a-f669-f299-64faed0b5dd5 + - 5e5d1275-b154-5293-2120-e079a12b06b3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:41 GMT + - Tue, 01 Aug 2023 07:33:50 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5851ebeb-9895-4550-5b7e-ebf2df5fbd79 + - 944bc9b5-545c-4fc3-59d1-de582d83eea9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 235.6442ms + duration: 285.133728ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2dd7a6b1-df9a-f669-f299-64faed0b5dd5 + - 5e5d1275-b154-5293-2120-e079a12b06b3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:41 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3a6918a2-092d-40b4-46ae-ee40c0aa31cc + - 44ed47ed-28d9-4e18-598c-806905e36dcf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 265.7637ms + duration: 207.258285ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9a2ff293-c4c9-925d-420a-8c382a20f6ba + - 5a7a1a0b-932f-1f62-7272-53b898e91a33 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:42 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6d748873-52da-43b4-4c69-707b6dad871e + - 03b01a99-a2db-4df5-428e-fc7f6485afa7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 378.0762ms + duration: 241.695512ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 464de350-61d7-8c30-cde9-ee74aecef624 + - 0c416560-11f6-60c0-7ae4-43eb04f48359 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:42 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 601580e4-4c70-4847-5cd1-8b44102be01c + - 992d1c0d-6d01-4a61-5e6d-04f449bacac5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 193.5566ms + duration: 238.826889ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 464de350-61d7-8c30-cde9-ee74aecef624 + - 0c416560-11f6-60c0-7ae4-43eb04f48359 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:42 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3bfe00ac-51ae-4e83-62ee-c80a041424d0 + - 9fa5795d-4cdc-4800-4081-451dbb9ffc32 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 185.3647ms + duration: 149.484617ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c91f329a-7f2a-149d-db1d-5be6a46b4ad5 + - d4a5e45f-a72a-3d80-5ed3-37086c23ff2e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:43 GMT + - Tue, 01 Aug 2023 07:33:52 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e9b079dc-2216-4401-70ef-28828df383d9 + - 309c1b5e-541e-4177-6c05-90f848d6ace6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 354.5331ms + duration: 260.105109ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28601862-a655-d277-787f-c385e9722a18 + - f7f89d71-9c82-ae00-2385-acc1827e2ace X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:43 GMT + - Tue, 01 Aug 2023 07:33:52 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b60b31ad-d179-4f1f-531a-dbce1615714d + - 1f234dc0-0633-4ca4-5b17-931826fb3ddb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 179.9486ms + duration: 165.393095ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28601862-a655-d277-787f-c385e9722a18 + - f7f89d71-9c82-ae00-2385-acc1827e2ace X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:43 GMT + - Tue, 01 Aug 2023 07:33:52 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 55440e34-4c1f-41c2-75de-a4b7156426ee + - 9bb63ee8-27b5-4a3f-65aa-d5b142f2b8b9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 161.3324ms + duration: 149.386926ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 24e247f8-ea9b-839b-4355-a2e64411ef51 + - 1ae0aa59-aaf3-309a-b219-5037a7bf760e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:44 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 12944e41-18db-4ca9-692d-de4a234503ae + - e12bcd5f-b4d0-43d8-7518-c8a604b16a6c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 430.299ms + duration: 173.875991ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fb861a08-0025-6f30-821a-f099cb783c51 + - d1406455-978f-a37f-1b75-a817ed369109 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:44 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f3fc1803-8660-47ac-7d29-62467d8deb10 + - 1bc9c633-9d80-4eec-6c4d-9174ac0edcc9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 214.8595ms + duration: 295.045295ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fb861a08-0025-6f30-821a-f099cb783c51 + - d1406455-978f-a37f-1b75-a817ed369109 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:44 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 23b36bcf-9687-44be-541a-a8977c279714 + - 1696d54e-3f6b-450d-434a-4b06a6849b7b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 170.4266ms + duration: 110.910909ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cbb7ce5-a69a-325c-56b2-90d6699ec451 + - 19419d3c-24c6-01ea-f9b9-dc04f0a4bd8c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:44 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 963e5daa-ca30-490c-7ba4-84ea56dc4208 + - 2ea845e2-8cef-43a5-674f-a797997248f2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 401.674ms + duration: 186.587975ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 166b99db-7e45-d1de-098d-240167ff1922 + - 063bfbe4-945d-cb64-53e5-da11e5499bbd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:45 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5dbfa5f9-e71c-42ac-7793-8b4ed13c380b + - a04638f2-603c-4e0c-4d25-857f061151e9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 163.1039ms + duration: 159.688339ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 166b99db-7e45-d1de-098d-240167ff1922 + - 063bfbe4-945d-cb64-53e5-da11e5499bbd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:45 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 60a3ffd0-1e10-4743-7208-209da81907f2 + - 8d94e58e-140c-4c52-52f1-573f09d2c7c8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 149.2989ms + duration: 122.500368ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aaac332d-a0e3-518b-ab7f-c0e6af9265f0 + - b9bf7b27-c08d-dfe6-6d7d-6e48fd1fdbb7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:45 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0624ec5d-3561-4c00-7d7f-4a288db8147a + - bcceec11-d3c8-49d5-730e-c2b47a93257f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 391.3328ms + duration: 227.172064ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml index 728fffbf..115b8eb6 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d349b419-75b9-5225-65e5-71d08aab5026 + - 265968d8-0bfc-67ff-689b-cf0320d48dae X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:46 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4bd524f5-8833-4fcd-57b4-2140e656ad53 + - cbb1b471-dbcf-423c-5c98-dce95b99ffd7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 373.0329ms + duration: 276.403714ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cbbb4941-850c-0c26-cb0e-4ee265c306eb + - c108cefd-49dc-7318-64d8-11a976cc366c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:46 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c84a2204-1405-453b-45a6-234d7212e195 + - 247c171e-9ad6-4ea3-4bd2-998c41187558 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 196.7434ms + duration: 154.649221ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cbbb4941-850c-0c26-cb0e-4ee265c306eb + - c108cefd-49dc-7318-64d8-11a976cc366c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:46 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f9bc954b-1569-43fd-69f4-98b046e9540d + - 4079afc8-941c-46d2-54cc-3d4769736a76 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 163.0772ms + duration: 143.664009ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 40906ff3-ba16-510f-669a-a58fe4b9517d + - 0a536d68-a6b1-707b-1906-cbcf0c71cdce X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:47 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 82008f06-059b-4c59-7c52-45930f8c8803 + - 7ee3a1a9-0309-4517-4f82-ad53bc6c08dd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.8132ms + duration: 273.537133ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33106f62-d706-e5c2-a9b1-bef69db31db0 + - 1f44bac6-698d-cc30-f5bf-2212d480a03c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:47 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 94485e12-3f8e-41a2-6637-168ae5af1554 + - 5a9fc9e5-e2ee-4f4b-5beb-ffba693c0a09 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 184.9255ms + duration: 159.088356ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33106f62-d706-e5c2-a9b1-bef69db31db0 + - 1f44bac6-698d-cc30-f5bf-2212d480a03c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:47 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c9ba43cd-f525-4fcf-7a35-6b45340ed69d + - 42a6d4d6-1405-4675-4259-344f9497d0f2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 199.6196ms + duration: 151.309938ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b9bf13ff-2fb4-5176-9ee5-20e0a0635d41 + - 5a745a06-a13a-bb03-bafc-35eeba67722c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:48 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 49a32ccd-285e-4384-7f15-1fe5964dcbe6 + - 4ac2d099-5318-4e61-613f-8c5c43e77d8d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 363.4701ms + duration: 169.490808ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5be640c4-ad92-1b0e-28f9-10a98d30a8c0 + - 03a55a54-90d4-b1a4-9aee-5c255f8af8d5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:48 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - fa964691-5081-4a00-4b3d-7f2f282249e8 + - 7ab3cf0b-f2f7-4c7c-49dc-9b3eae52cffe X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 184.9847ms + duration: 153.363205ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5be640c4-ad92-1b0e-28f9-10a98d30a8c0 + - 03a55a54-90d4-b1a4-9aee-5c255f8af8d5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:48 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bbf2ff95-7284-4e18-4087-4354ddd86ae3 + - c91dd659-520e-43d2-7f1d-5ff0625dec37 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 179.1993ms + duration: 154.855942ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 98e61a42-e39d-bdae-b4d6-f435bef35f9a + - 3bf122a2-0f80-23f3-31b6-3a802bf0c2a4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:48 GMT + - Tue, 01 Aug 2023 07:33:57 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1fe504f3-8692-40b2-6632-051cd6f25f0e + - 6509732f-2f9c-4ff6-7fee-4d45135d7d91 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.0958ms + duration: 484.799409ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - df59565d-08eb-9a9b-6c3d-59a547502131 + - 7e216c02-1e8b-f0e9-5b9c-9f117ad82370 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:49 GMT + - Tue, 01 Aug 2023 07:33:57 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b2e69246-612a-4c93-58b3-68fb47cf27c7 + - ad575395-0e7e-4d52-7f94-bae03c4a39d5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 183.5674ms + duration: 176.77684ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - df59565d-08eb-9a9b-6c3d-59a547502131 + - 7e216c02-1e8b-f0e9-5b9c-9f117ad82370 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:49 GMT + - Tue, 01 Aug 2023 07:33:57 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - df850081-5eec-440b-51d6-492b253c9015 + - 559ee4c2-4536-4a5d-5f55-7917a955bc65 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 175.5483ms + duration: 168.675387ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a0c6fe16-c1c5-4bc3-0a01-3b8f3781c05c + - e0a4c647-7bc7-fed5-44b6-75cb03ba2166 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:49 GMT + - Tue, 01 Aug 2023 07:33:58 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 529bfafa-145a-4867-4e2d-618e5cf35d26 + - 27b54031-5699-4966-7899-ec8adb62f542 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 348.332ms + duration: 188.929006ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc3e6248-0ed6-c4dc-3671-89fd488d8842 + - 140fdb89-830a-929c-4ef0-9c09af160ca0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 10:53:49 GMT + - Tue, 01 Aug 2023 07:33:58 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - bb889574-e309-486e-5fae-d290f2b09faa + - c2756618-0f93-4418-7574-18d0068371d1 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 206.5203ms + duration: 160.311161ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc3e6248-0ed6-c4dc-3671-89fd488d8842 + - 140fdb89-830a-929c-4ef0-9c09af160ca0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T08:43:08.479888Z"}' + body: '{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-31T11:31:37.040234Z"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:50 GMT + - Tue, 01 Aug 2023 07:33:58 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6f62aabd-a30e-4713-442b-c7d1e7d24049 + - cac133a8-9292-4fa0-69c5-53a2bebae3d5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 209.2175ms + duration: 146.382515ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eb84a777-d5b3-b5b5-c3a0-fba9058b5fd6 + - f0cb840d-4227-9aaa-4f1c-5968529f4a81 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 10:53:50 GMT + - Tue, 01 Aug 2023 07:33:59 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 905819fb-7fcc-4872-4b9b-b020d0e06f79 + - afffee32-bc37-46c4-6638-54b94aa68e07 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.2424ms + duration: 234.921954ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml b/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml index 75aed11c..4c714da0 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7c3dd625-ed15-8d84-19e9-64d0fc0e9b34 + - f45cd3c8-78db-5ef3-0f53-db2cedcb2bfe X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:31 GMT + - Tue, 01 Aug 2023 12:34:05 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5698eafb-1ac3-4d62-7dfa-91f53a352f92 + - bf66aeea-fd1d-45bb-723b-dd79bee96808 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 557.3766ms + duration: 578.786957ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 987ecaa9-09c1-829f-b387-8d43e7c056f1 + - e84f720d-4531-5c8c-bbf8-dee4cddeb75e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:43:32 GMT + - Tue, 01 Aug 2023 12:34:05 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5c896770-cf88-4124-7d44-2e50d4a88843 + - a6f12164-cdf6-47f1-4a23-3447057b969e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 280.6911ms + duration: 207.802472ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 987ecaa9-09c1-829f-b387-8d43e7c056f1 + - e84f720d-4531-5c8c-bbf8-dee4cddeb75e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-07-07T05:43:15.575372Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-07-07T05:43:18.116978Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-07-07T05:43:19.229745Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-07T05:43:23.35588Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-07-07T05:43:24.51319Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T05:56:17.74457Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-07-07T05:43:26.566949Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-07-07T05:43:27.892495Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-07-07T05:43:28.217372Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-07-07T05:43:29.164661Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-07-07T05:43:47.968497Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-07-07T05:43:53.329547Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-07-07T05:44:11.514335Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-07-07T05:44:13.122727Z"}]' + body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-08-01T11:57:15.755511Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-08-01T11:43:19.845284Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-08-01T11:43:21.113122Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-08-01T11:43:25.57009Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-08-01T11:43:26.740703Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-08-01T11:49:36.321798Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-08-01T11:43:28.836174Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-08-01T11:43:30.197999Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-08-01T11:43:30.543548Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","shareable":true,"sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-08-01T11:43:31.52367Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-08-01T11:43:53.006427Z"},{"id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","ready":true,"name":"ibanservice","description":"Check validity and get details of given IBAN number.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"IBAN Service","longDescription":"Check validity and get details of given IBAN number.","providerDisplayName":"SAP SE","sapservice":{"providesui":"false"},"supportedPlatforms":["cloudfoundry"]},"broker_id":"9a8cc8c9-8a51-48e7-aa80-8d8d86f30329","catalog_id":"08b9ac4d-fcc7-4d5d-9ead-f769d992a5b8","catalog_name":"ibanservice","created_at":"2022-02-11T16:13:45.641778Z","updated_at":"2023-07-17T09:01:28.519675Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-08-01T11:44:00.148943Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-08-01T11:44:28.160669Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-08-01T11:44:31.651052Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:32 GMT + - Tue, 01 Aug 2023 12:34:06 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 81b8b84b-ea4c-48cb-6c00-9ade1d6a6233 + - 3ac66dc0-0db3-43da-6c2b-89834acf542e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 247.7508ms + duration: 356.654992ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7cb192c1-4e1e-353f-ec69-8921d8bf44c7 + - 89349cff-bb46-a28d-2d58-c60b39b1a3dc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:32 GMT + - Tue, 01 Aug 2023 12:34:06 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b440cdd1-6ccf-4615-57e8-cb3e120c35ba + - fa19ea42-3371-49f5-6c3a-e15c39eedc72 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 435.5075ms + duration: 320.065125ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 493ef4ca-e503-a51f-8b55-71f179ea1802 + - 544e2715-bdde-9a27-1a67-c5a9d4f53002 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 12:34:06 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e22fb0c5-852a-4d42-7a47-387b2da08152 + - f3f51fcd-01e3-49d9-44be-e856c913e097 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 184.9812ms + duration: 190.178474ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 493ef4ca-e503-a51f-8b55-71f179ea1802 + - 544e2715-bdde-9a27-1a67-c5a9d4f53002 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-07-07T05:43:15.575372Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-07-07T05:43:18.116978Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-07-07T05:43:19.229745Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-07T05:43:23.35588Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-07-07T05:43:24.51319Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T05:56:17.74457Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-07-07T05:43:26.566949Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-07-07T05:43:27.892495Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-07-07T05:43:28.217372Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-07-07T05:43:29.164661Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-07-07T05:43:47.968497Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-07-07T05:43:53.329547Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-07-07T05:44:11.514335Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-07-07T05:44:13.122727Z"}]' + body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-08-01T11:57:15.755511Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-08-01T11:43:19.845284Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-08-01T11:43:21.113122Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-08-01T11:43:25.57009Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-08-01T11:43:26.740703Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-08-01T11:49:36.321798Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-08-01T11:43:28.836174Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-08-01T11:43:30.197999Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-08-01T11:43:30.543548Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","shareable":true,"sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-08-01T11:43:31.52367Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-08-01T11:43:53.006427Z"},{"id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","ready":true,"name":"ibanservice","description":"Check validity and get details of given IBAN number.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"IBAN Service","longDescription":"Check validity and get details of given IBAN number.","providerDisplayName":"SAP SE","sapservice":{"providesui":"false"},"supportedPlatforms":["cloudfoundry"]},"broker_id":"9a8cc8c9-8a51-48e7-aa80-8d8d86f30329","catalog_id":"08b9ac4d-fcc7-4d5d-9ead-f769d992a5b8","catalog_name":"ibanservice","created_at":"2022-02-11T16:13:45.641778Z","updated_at":"2023-07-17T09:01:28.519675Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-08-01T11:44:00.148943Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-08-01T11:44:28.160669Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-08-01T11:44:31.651052Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 12:34:07 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e4885d36-898f-429c-5574-3351cc1bdd0c + - 154a5f8b-a685-4436-5511-f865366aa679 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 149.4208ms + duration: 195.622504ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1bf338bb-160d-3e2f-661f-a70461a45325 + - 5a56a8f9-ad03-ca09-ccbf-76a465d00c90 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 12:34:07 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9064b96c-e5f7-4af1-550f-43d6fa56f22c + - 70dd29c3-f440-42ab-4100-a156ca741a0e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.8082ms + duration: 225.464506ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c1d5ce88-c7b5-f86b-a2e5-bb3130f649b7 + - 15526d0c-23d1-647c-df66-339ef03cf2fc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 12:34:07 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4fa4ea72-be71-45a8-4f2b-1a956883d30e + - 0a910b7e-a8da-4fed-69d2-9bbaba709317 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 194.7949ms + duration: 294.479474ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c1d5ce88-c7b5-f86b-a2e5-bb3130f649b7 + - 15526d0c-23d1-647c-df66-339ef03cf2fc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-07-07T05:43:15.575372Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-07-07T05:43:18.116978Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-07-07T05:43:19.229745Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-07T05:43:23.35588Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-07-07T05:43:24.51319Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T05:56:17.74457Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-07-07T05:43:26.566949Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-07-07T05:43:27.892495Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-07-07T05:43:28.217372Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-07-07T05:43:29.164661Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-07-07T05:43:47.968497Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-07-07T05:43:53.329547Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-07-07T05:44:11.514335Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-07-07T05:44:13.122727Z"}]' + body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-08-01T11:57:15.755511Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-08-01T11:43:19.845284Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-08-01T11:43:21.113122Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-08-01T11:43:25.57009Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-08-01T11:43:26.740703Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-08-01T11:49:36.321798Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-08-01T11:43:28.836174Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-08-01T11:43:30.197999Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-08-01T11:43:30.543548Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","shareable":true,"sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-08-01T11:43:31.52367Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-08-01T11:43:53.006427Z"},{"id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","ready":true,"name":"ibanservice","description":"Check validity and get details of given IBAN number.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"IBAN Service","longDescription":"Check validity and get details of given IBAN number.","providerDisplayName":"SAP SE","sapservice":{"providesui":"false"},"supportedPlatforms":["cloudfoundry"]},"broker_id":"9a8cc8c9-8a51-48e7-aa80-8d8d86f30329","catalog_id":"08b9ac4d-fcc7-4d5d-9ead-f769d992a5b8","catalog_name":"ibanservice","created_at":"2022-02-11T16:13:45.641778Z","updated_at":"2023-07-17T09:01:28.519675Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-08-01T11:44:00.148943Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-08-01T11:44:28.160669Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-08-01T11:44:31.651052Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:34 GMT + - Tue, 01 Aug 2023 12:34:08 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1617fa2a-8657-4a8d-7819-b23ae3579a66 + - fecdf548-909e-4e18-7a94-4ced655c3319 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 163.9293ms + duration: 180.442387ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d9447bc3-3ffe-ad43-1b51-00bd9bcb9c9d + - fa7f5f74-9709-13ed-0169-50ade3748cfb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:34 GMT + - Tue, 01 Aug 2023 12:34:08 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - aec8fa7d-eebc-4fba-598d-c80bbb9d861b + - 3f51b545-5720-44bc-5434-cad26cd97aa7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.2365ms + duration: 392.376527ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bd16d1bb-d859-d012-0caf-72a3cec07f79 + - c6d29cc1-cd54-1327-9c3a-8405a2f57a1c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:43:34 GMT + - Tue, 01 Aug 2023 12:34:08 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f44ac20b-289a-4fb8-6357-5c34da2105a1 + - b4582ec4-f607-489f-7731-c2d2fb4bc87e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 165.9804ms + duration: 188.887586ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bd16d1bb-d859-d012-0caf-72a3cec07f79 + - c6d29cc1-cd54-1327-9c3a-8405a2f57a1c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-07-07T05:43:15.575372Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-07-07T05:43:18.116978Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-07-07T05:43:19.229745Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-07T05:43:23.35588Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-07-07T05:43:24.51319Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T05:56:17.74457Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-07-07T05:43:26.566949Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-07-07T05:43:27.892495Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-07-07T05:43:28.217372Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-07-07T05:43:29.164661Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-07-07T05:43:47.968497Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-07-07T05:43:53.329547Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-07-07T05:44:11.514335Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-07-07T05:44:13.122727Z"}]' + body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-08-01T11:57:15.755511Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-08-01T11:43:19.845284Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-08-01T11:43:21.113122Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-08-01T11:43:25.57009Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-08-01T11:43:26.740703Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-08-01T11:49:36.321798Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-08-01T11:43:28.836174Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-08-01T11:43:30.197999Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-08-01T11:43:30.543548Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","shareable":true,"sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-08-01T11:43:31.52367Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-08-01T11:43:53.006427Z"},{"id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","ready":true,"name":"ibanservice","description":"Check validity and get details of given IBAN number.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"IBAN Service","longDescription":"Check validity and get details of given IBAN number.","providerDisplayName":"SAP SE","sapservice":{"providesui":"false"},"supportedPlatforms":["cloudfoundry"]},"broker_id":"9a8cc8c9-8a51-48e7-aa80-8d8d86f30329","catalog_id":"08b9ac4d-fcc7-4d5d-9ead-f769d992a5b8","catalog_name":"ibanservice","created_at":"2022-02-11T16:13:45.641778Z","updated_at":"2023-07-17T09:01:28.519675Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-08-01T11:44:00.148943Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-08-01T11:44:28.160669Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-08-01T11:44:31.651052Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 12:34:09 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 18e67b65-7df5-4051-47f2-2cd0e79aeb74 + - becb602d-15b8-4b80-72e7-e88728925f81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 175.6166ms + duration: 205.802854ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 99980c47-de18-7619-9dbc-0a78081338f5 + - 25ac1ef1-86ac-ac85-8608-2117d56cc5b4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 12:34:09 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d79debd-ac1f-43af-75e7-9015942e4c90 + - 416af0a4-559a-441c-6c6c-f019bc627ca0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.5681ms + duration: 335.437752ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 616d4ae6-036b-6032-38b9-d5c9db2d9b3e + - 208364d0-8aba-480c-0e08-07279bffe849 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 12:34:09 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b12e3da3-96ec-4105-65d8-ebc483797360 + - 6743fec3-fbdf-4007-6f88-5432d1b65b6c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.6614ms + duration: 155.468837ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 616d4ae6-036b-6032-38b9-d5c9db2d9b3e + - 208364d0-8aba-480c-0e08-07279bffe849 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-07-07T05:43:15.575372Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-07-07T05:43:18.116978Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-07-07T05:43:19.229745Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-07T05:43:23.35588Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-07-07T05:43:24.51319Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-07-07T05:56:17.74457Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-07-07T05:43:26.566949Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-07-07T05:43:27.892495Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-07-07T05:43:28.217372Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-07-07T05:43:29.164661Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-07-07T05:43:47.968497Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-07-07T05:43:53.329547Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-07-07T05:44:11.514335Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-07-07T05:44:13.122727Z"}]' + body: '[{"id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","ready":true,"name":"service-manager","description":"The central registry for service brokers and platforms in SAP Business Technology Platform","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"createBindingDocumentationUrl":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/1ca5bbeac19340ce959e82b51b2fde1e.html","discoveryCenterUrl":"https://discovery-center.cloud.sap/serviceCatalog/service-management","displayName":"Service Manager","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","longDescription":"SAP Service Manager allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","serviceInventoryId":"SERVICE-324","shareable":true,"supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"c7788cfd-3bd9-4f66-9bd8-487a23142f2c","catalog_id":"6e6cc910-c2f7-4b95-a725-c986bb51bad7","catalog_name":"service-manager","created_at":"2020-08-09T11:31:20.082571Z","updated_at":"2023-08-01T11:57:15.755511Z"},{"id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","ready":true,"name":"lps-service","description":"Service for integrating with LPS Service","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"tags":["lps","service"],"metadata":{"shareable":false,"displayName":"LPS Service"},"broker_id":"bd821762-2eb0-407a-8b09-d80330750d1d","catalog_id":"72d71e2f-aa3e-4fc9-bfc0-8a5a8b541570","catalog_name":"lps-service","created_at":"2020-08-10T07:34:28.809068Z","updated_at":"2023-08-01T11:43:19.845284Z"},{"id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","ready":true,"name":"saas-registry","description":"Service for application providers to register multitenant applications and services","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["SaaS"],"metadata":{"documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html","serviceInventoryId":"SERVICE-859","displayName":"SaaS Provisioning Service","imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAdMAAAHTCAYAAAB8/vKtAAAACXBIWXMAAFxGAABcRgEUlENBAAAgAElEQVR4nO3dT1IcR7c34OKG5/iuwPIGEF6B8AqMxz0QHhOE8bgHQgPGxkH02GjA2GgFRiswsIErreAzK+gv0u/hNVYbqSG7szKrnieCeON2O66aAupXJ/+c3JjP5x0A8HT/49oBQB5hCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkOkLF5DWTaaz7a7rvvzo29hZ4tv6s+u6q49euzo/3v9z4b8E+ISN+Xz+8LvQs8l0thNBuX3vf7v43801f7rrCNz397/Oj/cvF/5LYNSEKVWYTGfPIiC3o6pM//dXFf90PkTAXkZ1myra9wv/FTAKwpReRMV591WiyizhNsL1r6/z4/2Ph5CBgRKmFBHzmik4d7uuezGSq57C9SLC9cJcLAyXMGVtJtPZ7r0ArXnItpQ0B3sWwWpIGAZEmLJSUYHuxdcQhm7X5d29YFWxQuOEKdkm09mXEZ6HKtBHuxsKPjHHCu0SpjxZVKEpQF+6iivxV7V6frx/NoDvBUZFmPJosRL3aEQLiUpL226OhCq0Q5iyNCFa3G0M/x6N7PuG5ghTPkuI9k6lCpUTpjwouhIdmROtRtpac6idIdRHmPKvJtPZUSwusr2lPm8jVO1VhUoIU/4hhnTPbHGp3m0M/Z6M/UJADYQpf4m9oqka/dEVaUraTrOnSoV+CVPu9oteqEabpUqFngnTkZtMZ2le9OexX4eBeBtVqvaEUJgwHakY1k1zo9+N/VoMTKpSd7QmhLL+x/UenxjWvRSkg5RWX/8RIw5AISrTkYnVuhe2vIzCm/Pj/b2xXwQoQZiOyGQ6SzfWX8d+HUbmOoZ9zaPCGhnmHYkY9hOk4/M8DelHNytgTVSmIzCZzs60BBw9C5NgjYTpwI0oSFMz+PuNC5bpX5sWYn0ZX88X3h0egQprIkwHbIBB+i4C8/1dWK6y6XsMhaavnQja7QE2shCosAbCdKAm09lJ460B08KZqwjNq75u/hGwO/G1O5BV0AIVVkyYDlCjq3ZvIzjTtp3LWnvNxh7dvQjWlqtWgQorJEwHpsEgTS3wzs6P9y8W3qncvWDda7RiFaiwIsJ0QOLm/kcD31FaLHQSITqI/Y/xEJO+Xiy8Wbf0s9i2DxXyCNOBiLm9q8orpA9xusnZwjsDET+Ho8YWfmnsAJm+cAEHo+YWgYMP0Tsx17sXTTLuvmofAn4ehx7sLrwDLEVlOgAVb4FJc3KHYwjRh8TpPK2E6i/nx/sa5MMTCNPGVbzg6JeoRg0dthWqP4z54QeeSpg2rNJ50g9xQPXKmikMSQNzqlb4whNodN+22uZJ38TKUEH6gDSnGseifRsLf2qTfp/OopIGlqQybdRkOkvVzatKPv3o50afKhYqHVU49OssVHgEYdqgyvaTpmHdXcOCTxdVYHoQ+a6yj/Z9i800oA/CtEGT6eyykuYA9ieu0GQ6241QraVKvY1h+ypbO0JNzJk2JoYFawjSN4J0taIKfBan49RgM8Id+AyVaUNiOPB9BZWL+bQ1i4emnyv5OD+dH++fLLwK/JfKtC0ngnQcIry+iTnpvh1Z3QufJkwbEYuO+t6bKEgLikVd23GyTp8M98JnCNN29D3MJkh7kOakz4/308Kk1z1/lO8m09nOwqvAX4RpA+Im1ueiI0Has/Pj/bQX9ftYYdsX1Sk8QJi24ajHT/lOkNYhVvvu9BioX0WzEOAjwrRyPVel147lqsu9edS+WhEeWowEi4Rp/fqqBD7YR1qnaKKw01OgblYwfw/Vsc+0YlGV/t7DJ3RySAOiQryMw71L+1pnJPibyrRufVWle4K0fjFq0FeFqjqFe1Smleqxmf3rWDlKI3qsUL+t4bi9+Fu5m8d9Fl8PeR9fyZ8eGlkVYVqpyXR21kOThrRy117CBvUUqMV+X+L7245K/C4wt1fUEew2Dtm/C9p0Hd8bxuYxhGmF4sbx/wp/snRDeWbBUbt6CtS1VKeT6exZBOfd11cL/9H6fYiQTd/fpSqWT/niE+/Rn8Me/uU9Qdq29POLRWtXBcNnL8ImWxxBtxPbsfoIz499FV9/nTM7mc7SA+dFfF36e+E+lWmFJtPZ+8I3k7fRso4BiDnEy4KHIjx5ZW+E/14EaC3nuC4r9Uw+c4A6nTCtTzyd/1bwgxneHaDCv0ePajcZw9F7MQJTQwWa6zZaLZ6YZx0vYVqZHhYeOatyoAqfifq/n3sgi4r5sILTj9bpXYSqanVkhGlFelh4dH1+vL+98CqDMZnOLu7m/NbswS1VMZR71PNhDaWlxUtH58f7DgcYCU0b6lJ63rKPhU6UtVfogPGFYd4UopPp7DK6eI0pSLsYvv41rX+YTGcL14bhUZlWpGAV0dlTOh4F21L+kCqx2NZyNsIA/ZTUpeqwhiYXrIcwrUQPQ7x6q47IZDpL8+I/rvk7fhfbctb977TsbYSqv72BMcxbj5JDvG/8MY/OUYHh3heC9LPSyNOVc2GHR5jWo2SY+kMemVhpa+6uDmk/7avJdHYVK5wZAGFaj1JzpW9VpeMU83Vvx34dKpLaPv4RW5honDCtQGywL8We0nFz467Pz2nVc6yboFHCtA6lVtVeW004bjEq8Xrs16FCab75vWHfdgnTOpSqTFWldPF7cOtKVGczhn3NbTdImPYs9uSV6E96qxsL3d+Lkfwu1OvXaCtKQ4Rp/0oN8frj5D6jFHV7mQLVPGo7hGn/hCnFxdyplb11SwcCWJjUCGHavxJh+uH8eP9q4VXGzgNW/Z4L1DYI0x7FH0iJ+VJDeiyIY8IsRKqfQG2AMO1XqSFeZyvyEL8bbRColROm/Sqxp+xaxyM+QZi2Q6BWTJj2q0Rl6mbJg2Kot8R5p6zGc3PddRKm/SpRmQpTPmdovyMf4ji4j7+G8tDwnX2o9XGeaU+iWcP/rflfT40aDAnxSdHC7o9P/TcVuo6zU9MUxl8tMh/TKjMOTP8yHmi3Y5Roc+E/rNsPGrHUQ5j2JJrb/7bmfz2dW6o1GZ81mc7eF1pZ/hS3EZjp62pd/aXjAXc3grXUKU65vtVvuw5fjP0C9KjEEK8/MpZ1UdnB3tfxmS5K7ZGOhXppG9lJLPLZja+ag/UiPQREi0h6JEz7I0ypyVkFYfohwuyi7xXo9/oXn0XFuhfH19U2FLwZDx2lttnxAMO8PUnnF8axS+uSuh49G9t15el6Guq9jTA4qb1LV1Srh5WG6uvz4/2jhVcpxmre/qwzSDtVKU9QclXvbZyrmoYo91pod5mq1QisZ/HZa+oe9cpZqP0yzNuDGDZaN714eawSQ723d/OSrc7zxec+iu0pJxXNqZ4Vmj7iX6hM+yFMqU5Uh+vci/km3exTdTeEBTNpXvf8eD8tUPq+kir1+WQ6M9TbE2Haj7WHqeXyPNE6DkVIDRO+juHcwbW2jC5Szyo50u5VoZEvPmKYtx/r/mW/XngFlpOC4ecVXasUokdjeLCLSnt3Mp0drvD6PdWZ1b3lqUz7se4wNcTLk0TlmPsw9iG68+yMbYTk/Hg/Vfbf9jzs+yKawlCQMO3HusPUKTHkeGqLuhQgP6UtWWNucxcPEDs99wJ2hnFhwnSYzJeS47FbZO5vc3ET/3sx13aPUy5fTaYzrUQLEqb9WPceU5UpT/bIod5BrdBdpbgeOz0GqpW9BQnTAXIYOCvwuWHat0Neobsq9wK1jyFf1WlBwnR4rORlFR4a6n0XJ5XsCtHl3K307WlRkuq0EGFaWJyjuE6G2sgWQfnu3v+fVFl9P8YVuqsQc6h9bFdRnRYiTIfHthhW5SyqqR9ihe5D1SpLiED9oYdrdbjwCisnTIdHZcqqXMQK3dFuc1m1uJZvCv+zzzXBXz8dkIZHmLISVueuzWEM+ZY87u4wzmRlTVSm5a173sQwL1QsHlJKB9tunMfKmghTgMJiEVfJ4d7NWFHMmghTgH4cFt4uI0zXSJgOj71/0IC7Q8YLftLvDPWujzAdGBvpoR3Ry7hkdyTV6ZoIU4B+laxOhemaCNOBMYwDbYm9p6Wq0+8WXmElhOnw2JwN7Sl2dF2BlqajJEwB+leyy5QwXQNhCtCzWNlbat+pMF0DYTo85kyhTaUOEnix8ArZhOnwmDOFBsWpPEWaOGh8v3rCtDz7QIGHlKpO96z8Xy2nxhQwmc6eReuw3QInRZgPgXalMH1Z4NP/GIGaVhGfOCEonzBdk3jq240QfT7IbxJYtcuCVzQ1v3+V7lFCNd/GfD5v/Xuoyr0qdC9+WYs7P97fGPvPAVo1mc6uenoAT/O1hw6DfxphuiIxoX9YaIjmc77WoxfaFFXijz1++NSNaS+OiWNJhnkzRTeRo8qWm29b6ATN6vuA/7Su4/fJdPY2KlX3kiVYzftEaTh3Mp2lxQK/V7hvy7J3aFct4ZX6+F5NprPDhXdYYJj3kWJh0Uklw7kPeXd+vG9VLzRqMp3VdmN+F0O/qtQHqEwfYTKdHcVTY81BmjxbeAVoyXVln/WFKvXTVKZLiHnRk8a2uPyvZe7Qpsl0dlbxQ/vbqFLdX+5RmX5CGtKNlXW/N7hX1LwptKvm4dS7uVT3mHuE6QOiGr3qeYl6DnOm0K7at6WkFb9/TKazvYV3RkqY/ot71ei6W/+tk6dGaFff22OW9WsMSY+eOdN7onvRxUDa/12fH+8LVGjUZDp739ADfVowtTPmeVSVaZhMZ7vxNDiUPrr6AUPbWtqGku43l2OeRxWmf295+a2vXrrrEvO+QJtaa+c36kAddZjGat2LODlhiAzzQrtamTe9b3OsgTraMI1ORpexzHuohCm0q8Uw7e4F6u7COwM2yjCNp6b3A59XfFvw1H5gxaJ13w8VdkNaRgrU38a0dWZ0q3kjSC+HNj8a7gL0QncSGI5KT6da1rdjOM5tVGE60CBNT61nEaCaUMOAVXZu8rJuY9tMq8PWSxlNmA4sSAUojFjsiU+hutfIPW3wgTqKMB1IkApQ4B9iIeVhfNV+f0uB+myoU1CDD9PGg1SAAkuJxT5HlXdNGmynpEGHaaNBKkCBJ4smNDVXqm/Pj/cHt21msGEacwpXjQTphwjQMwEK5Irh36OKT7365fx4f1AHjQ8yTO81ZKh9H+nbCFD7QYGVi6LirNItNd8P6d431DC9rHw/1pv01KgKBUqYTGeHUanWNFI3qBW+gwvTOIu01qENIQr0IkbsLiorNAZzVOSgwjRWs/268Eb/0nDuoRAF+lZhlTqI+dPBhGmlK3fTwqK9MbTSAtoR98uzitaVNN9ycBBhWumCo9fnx/tHC68CVCDum2eVnJyVCo/tlvefDuXUmKOKgjTtE/1GkAI1S8EV+z1fV/Axv4r7eLOar0zjzLzfFt7ox+D2TgHDV9F6k2aHe5uuTO8NU/TtNvZMCVKgOefH++k++k3cy/pUw/38SVof5j2rYMHRXa9JjReAZsV+z52eA/WraIfYnGaHeeOw3N8X3ihrsE2bgXGqYGfEbSxGamorYZOVaSXDu2/SZmNBCgxJBRXqZouLkVod5j3s+ZihFKR7C68CDEAFgfoyRh+b0VyYRuPmVwtvlCNIgcGrIFCbqk5brExPFl4pR5ACoxGB2tcuhRctVadNhWlc2L66dQhSYHRi20xfjR2aqU6bWs3b49FqwznZ4PSmqXkIaNjV/GBrMAsUJ9NZCtWXC2+sXxONHL5YeKVSUZX2EqQxb9CcCM67r+3KDgGAwds4vUnf4rsUrLHd5LLhgD2M+0jp1q1HLdyDm6lMe6pKmzu8duP0JrVXvPsSnlCfd7G176K1YO1xD+rXte87bSJMe2zQ8H0LnY02Tm/Svtu9CrYMAcu7jcO6j+YHW800KIjzUH9eeGO9ql+z0soCpD4moX9pJEjTL/b7+OUWpNCOzZiD/L+N05uzeCiu3vnx/klU1yW9jGY91ao+TGNfaenh3evam9an+dCN05urCFHDudC2FKrv4+G4BXs97D9VmWbqoyqt+oe2cXpzEsPeNR2GDuRJD8U/b5zeXG6c3jyr+VrG/GXpe3PdBU7Nc6ZR1r8vXHm9rvVg7xgGuhSiMHip6tubH2xVPdU0mc6uCt+Pvql1QWjtlele4SC9rjhIt+PBQpDC8KX73m8bpze1N4opXS1WW522EKYlVfmDiiDt80gkoB+/xrROlaKZwtuCn2134ZVKVBumsZ+pZBX2psYuG4IURu/HjdObmtvqlSxCNifTWZWBWnNlWroqre6XVZAC4VWtQ76xGOnNwhvrI0wfqeQF+6W27hqx2OhMkALh14p7a5csRoTpsmKIt2QDghqHUM4sNgI+clFjc4coRkrNnW5GRlSl1sq05HBGmiutqj9mbNzu66g5oF6b0YKwRiUXSlVXndYapiUvVFVVaWzWbuqEeaCoFzV2SooFnB8W3lgPYfo50T6w1BDvmwpPIjgyTwp8xlGlvXxLVafPa+vVW2NlWvKJ42zhlR7F4oI+Dt8F2rJZ6b74kvfUqhZj1RimpS7Qhwr3lRreBZZ1WFt1GutPSi1EqmoR0pjDtLaqdLuH03GAdtVanZZaIKUyfUgsdy41X1hVmNZ+IgJQpTGHaVXFR22VaaknjeuaFh7FUE21PSeBam1unN5Ude+Iod7rhTfWoKb9prWFaakLU1tVumsFL/BENbYZLFWdVnPu61jDtLaFR7W2CAPqV+P9o9Q9VmX6gBLt8z5UeLisIV7gqTZr69lbcKeEMP1YwbHvqqrSWMVriBfIUWN1WmLetJph3i8WXulPqYtSW1Va+snqQ+xnvZgfbFXVkxiGIBYEHRZebVpd4/e41657tLGaw0BqGuYd63xpySerdObg9vxg60yQwnrMD7bSg2qqFH8oeIlrDdO1q6WtYE1hWiRUKpwvLfVH8G5+sLUnRKGM9NDadd1Phf65kkdWLqvUvbaKB4mxhem7hVf6V+qpqspT+mHI5gdbJ6XuOxU2vq/tEJG1GluYjuqHe8/b+cHWWL936Fupfe1VDfUWbIyjMv1IiWGKGgOlxCKF2oa2YUxqPcy7hNsC/4Y50x6MNVRqW3QFozHydQqjuedWEaYF95hafAPAytVSmZYq080bAgxLFQ0rRjXMW9NJMQAjYJgXADKNZmpNmAJAppp68wIjdu+Q/J2eGpj/GSvfL+zL5rHGFKY1dj+C0YsQTZ2CXlZwLb7ruu7njdObdL84mh9s2VbGUsY0zFtbqy0YvY3Tm71YZV9DkN6Xmqn8vnF6c7LwDo9R49FwazGmMK3mqB7gryBNQfVr5ef5/rhxenNZYd9bKmMBElDcxulNOu/zx0au/IuRtwSsXRVD8cIUKGrj9CYN/f3c2FV/sXF6c7TwKp/Tx0KyXghToLRSp6is2quN05vRhMOK1HjO6lqMKkwL9gAG/kUsOGr5Bqs6XdJkOis1z1xFY4hawrTUni6LCKBfh41f/5cWIy2tVPFSRcvCKsK0YM9cQzTQkwihIayq3114hX8zqpHAsc2ZClPoz1BurqaLllPqfqsy/cj1wiur548A+jOUDfzuI8spcp3Oj/fNmX6kxAVRmQKU8aLAv1JNm9iawrTEvKkuSABrVnDnRDVHvI0tTNMPeTS9IqEyQzmJZTRndGYodZ+t5vDxmsK01EUx3wH9qObGl2ko38c6CdMelXpqVZlCD+YHW+nGdzuAa69P7+cJ076cH++XuijCFPrTehB9iIcCHjCZznYLnQR0W7BHwWfVts+0xMqsTW0FoTett+PTTvDzRleVdhWGqeoUBmx+sJUqiV8a/Q6v5wdbrTbpL6lUh6gqjl67M9Yw3Vt4BSjlqFCTllW6dd/4vNgtUeogA2H6CaUuzvPJdKaBA/RgfrD1ZwRTS4uRDs2VLqXYA8f58b4wfUhMJpf6A9OsGnoSwbTdQIWa7kffG979vDhyrdR9tZrOR3dqbHRf6mnDkA30KOZP07Dg60p/DumGvT0/2LIVZjmlVvF2Na4KrzFMS12k51b1Qr/SkO/8YCvNoX4dC5M+9PyRUiX6puu6b+cHWzsR+Cyn5ErnqoZ4ky8WXulfyYt0qEKF/kVopb/Hw43Tm2c9HUrxp3nRpym88OhDwb4ES6suTNO86WQ6uy7UlP7lZDo7rOUIH+C/waoibEvJqrTKYfdaDwcvXZ0C8ARRlZY4bu1OlYvBag3TkhfrMFahAfB4JavSKod4u1rDNC5WqYUIm6pTgMfroSqtdmV1rZVpV/iiqU4BHu+k8DUr/e8treYwLTnUu1nzDwmgNpPpbK/QQtE772o6JeZj1YZpDPWW7I7y0r5TgM+LkbzSBUjVXahqrkw7QwgAVTop2O2oi7NLhWmGi8LNsF+kfacLrwLwl1h09LLw1ai+0Kk6TKOZQunVW0dOlAFYFMO7fVSI1R80UHtl2vVwsv1mzcuvAXp0VrBt4J03NS88urMxn88XXqzNZDq7LLyXKXl9fry/9iDfOL0p8QN4oz0b9OpVgX88NedfW/e4WL3768Ib6/d1C2FaY6P7f5NC7fd/eX2dXk2ms6vz4/0hVKml5zeAAYmdDn3MWzZRlXaNDPPenajex2GwZ7bLAGN2b5605OrdO6Wn+Z6siTANfVzUzQhU3ZGAsTor3JzhTjNVaddSmPZYnT6v8SBagHWbTGcpSL/r6UI3U5V2jVWmXY8X93n8UgGMQuy572u9xeuWqtKutTDtsTrtot2gQAUGL1bu/tzT93nbYje61irTZG/hlXIEKjBoPW6BuXMYDXua0lyYRun/y8Ib5QhUYJAqCNJ3tffgfUiLlWkXc6cle/Z+7K9AtcoXGIoKgjRptjd6k2EaQwB9X/Q0MX8pUIHWxWKjvoP0dRy92aRWK9MuhgL6Wox053kEqsYOQJNi2qqvxUZ3rku0b12nZsM07PU83NvdC9TdhXcAKpVG1aLveQ3tRvtcWLoSTYdpLEaq4WkmdUr6zVmoQEMOezhA5N80Pbx7p/XKNAVq2o/0duGNfqhOAZb3rvXh3TvNh2moYbgXgOXdDqkAGUSYxupeVSFAO3ZbbM7wkKFUpnetBl8vvAFAbV7HPXswBhOm3X8C9aii+VMAFr0ZyjzpfYMK05DmT68XXgWgb9ctdzn6lMGFaYzBW5AEUJd0T94Z0jzpfUOsTLvYs7Sz8AYAfRh0kHZDDdPu70D9YeENAEq6C9LmGzN8ymDDtPu7f69ABejP4dCDtBt6mHZ/B6otMwDl/dDq+aSP9UVbH/dp0jLsyXT2rJKGzn1IK+gGO1cBDaihB25pownSbixh2v0nUPcm01k30kA9nB9sDWqDNLRk4/RmPrIf2KiCtBvDMO99KVC7rvtp4Q0AViEtNvp+bEHajS1Mu79PmbEoCWC17lbtXozxuo4uTDurfAFW7cMYtr98yijDtPs7UL/RKQkgS1rguD3mIO3GHKbdPzsl6eUL8Hhvht7ZaFmjDtPun4HqtBmA5f2UFnUK0v8YfZh20Rz//Hh/10pfgM9KU2PfxmJOgjC9J345vo3JdAD+6V3Xdc+GdrD3KgjTj8QvybZhX4B/SMO65kcfIEz/xb1h3++t9gVGLi3Q/Maw7qcJ00+IzcfPVKnACKVC4vX58f7ot70sYzS9eZ8qhjR2J9NZqlTTk9lXbX4ny9s4vTnquu5VK593BN7ND7bWeti9n/mjrP3nUYE0N5pW6r4f+Pe5MirTJUWVuh3HuRn6BYboQ/TW3RGkjyNMHyHmUo8iVN8088EBPu02CoXtsfbWzWWY9wniiS0d6XYSQ79jPKsQGIZUGBxapZtHmGa46540mc7S/MlRs98IMEZpG+CZ4dzVEKYrEHtTU6h+2fw3A4yCxgurZc50hQyTAIyTMAWATMIUADIJUwDIJEwBIJMwBYBMtsYAyfvox8rnafrOAmEKdPODrbO0gd+VgKcxzAsAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkElvXvpy3XXd4QCu/l7XdS8XXm3MxunNUdd1r1r/Pgp5Nz/Y2hnFd8rShCl9+XN+sHXZ+tXfOL1xUwUM8wJALmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZtBMEkvep56wrsZSrBj4jhQlToJsfbJ11XXfmSsDTGOYFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMmknCHQbpzfPuq575kos5c/5wZb+vPyDMAWSva7rXrkSS0kHAuw08DkpyDAvAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmvXnpy7ON05ujAVz9ofRovVx4hYe8f+B1RkyY0pevNFavx/xg61KgwtMZ5gWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyPSFC8i/eN913bvFl+nJlQsPdROmLJgfbJ11XXe28AYA/8owLwBkEqYAkEmYAkAmYQoAmYQpAGQSpgCQSZgCQCZhCgCZhCkAZBKmAJBJmAJAJmEKAJmEKQBkEqYAkEmYAkAmYQoAmYQpAGQSpuPwbOwXAGCdhGn/PhT4BNsLrwBFbJze7LjSwydM+/e+wCfYXXgFKKXU39+fC69QjDAdh682Tm8Ox34RoLSN05s0xbJX4p+dH2xdLbxIMcK0f6X+AH7eOL0x3AuFbJzefNl13UXXdZsF/sXbhVcoSpj2r8Qw750/Nk5vjhZeBVYq5knTg/LzQldWVdqzL0b93Z8i9aUAAAJvSURBVNeh9B/BqxjyvSgc5DAGqRrdKRiid4Rpzzbm8/moL0ANNk5v/BCAHD/MD7bOXMH+GOatw7uxXwAgy6XL1y9hWoeLsV8A4Mmu5wdbpmx6JkzrIEyBpzK8WwFhWoF4qrwe+3UAnsTDeAWEaT1Oxn4BgEd7a4i3DsK0ErESr0SfXmA4PIRXQpjWxdwHsKx384Mtq3grIUwrMj/YOlKdAkvSzawiwrQ+GtIDn/NWVVoXYVqZ+cFWWpn3duzXAXjQbamTaFieMK3TnlMggAfszQ+2nF1aGWFaofhDcaA38LE3MXpFZYRppWI+5KexXwfgv1LbQMO7lRKmFZsfbKU9ZG/Gfh2Avzqk7bgM9RKmlYsnUYEK4/VXkJonrZswbYBAhdESpI0Qpo2IQP1h7NcBRuStIG3Hxnw+H/s1aMrG6c1OnBKxOfZrAQP2Ojqi0Qhh2qCN05svo4/vd2O/FjAwqZ3o7vxg68oPti3CtGFRpaZQ/Wrs1wIal5q0nKhG2yVMB2Dj9GYvml4LVWjLbRyjdmJutG3CdEA2Tm92oxWh4V+o24cI0TMhOgzCdIBiTnU3vnYsVoIqXMfiwQtzosMjTEdg4/Rmu+u6Z13X3f3vs7FfE1izVG1e3f2v49KGT5gCQCZNGwAgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDIJEwBIJMwBYBMwhQAMglTAMgkTAEgkzAFgEzCFAAyCVMAyCRMASCTMAWATMIUADIJUwDI0XXd/wfWIwmrjLUmFwAAAABJRU5ErkJggg=="},"broker_id":"e1c79edb-21eb-4b15-b873-176fc64cc438","catalog_id":"lps-saas-registry-service-broker","catalog_name":"saas-registry","created_at":"2020-08-10T07:35:37.447784Z","updated_at":"2023-08-01T11:43:21.113122Z"},{"id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","ready":true,"name":"destination","description":"Provides a secure and reliable access to destination and certificate configurations","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["destination","conn","connsvc"],"metadata":{"longDescription":"Use the Destination service to provide your cloud applications with access to destination and certificate configurations in a secure and reliable way","documentationUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html","providerDisplayName":"SAP SE","serviceInventoryId":"SERVICE-171","displayName":"Destination","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","supportUrl":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/e5580c5dbb5710149e53c6013301a9f2.html"},"broker_id":"624a27b3-14b6-4317-a71e-5506896d0ce4","catalog_id":"a8683418-15f9-11e7-873e-02667c123456","catalog_name":"destination","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-08-01T11:43:25.57009Z"},{"id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","ready":true,"name":"metering-service","description":"Record usage data for commercial purposes like billing, charging, and resource planning.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["metering","reporting"],"metadata":{"documentationUrl":"https://int.controlcenter.ondemand.com/index.html#/knowledge_center/articles/879701d81a314fe59a1ae48c56ab2526","serviceInventoryId":"SERVICE-367","displayName":"Metering Service"},"broker_id":"967da469-6e7b-4d6e-ba9b-e5c32ce5027d","catalog_id":"metering-service-broker","catalog_name":"metering-service","created_at":"2020-08-12T13:15:46.933069Z","updated_at":"2023-08-01T11:43:26.740703Z"},{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","ready":true,"name":"xsuaa","description":"Manage application authorizations and trust to identity providers.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["xsuaa"],"metadata":{"longDescription":"Configure trust to identity providers for authentication. Manage your authorization model consisting of roles, groups and role collections, and assigning them to users. Use RESTful APIs to automate and integrate with other systems.","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/6373bb7a96114d619bfdfdc6f505d1b9.html","serviceInventoryId":"SERVICE-92","displayName":"Authorization and Trust Management Service","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM1LjIyMSwxMy4xNDFsLjAzOS0zLjUxNmE0Ljk3OCw0Ljk3OCwwLDAsMSwuNDg4LTIuMTg3QTUuNzE0LDUuNzE0LDAsMCwxLDM3LjA3Niw1LjY2YTYuMzY1LDYuMzY1LDAsMCwxLDEuOTkyLTEuMjExQTYuNjY5LDYuNjY5LDAsMCwxLDQxLjUxLDRhNi41MTksNi41MTksMCwwLDEsMi40MjIuNDQ5QTYuNzE4LDYuNzE4LDAsMCwxLDQ1LjkyNCw1LjY2YTUuNjA5LDUuNjA5LDAsMCwxLDEuMzQ4LDEuNzc3LDUsNSwwLDAsMSwuNDg4LDIuMTg4djMuNTE2TTM2Ljk3MSwxMi43NUg0Ni4wMVY5LjYwNWEzLjY0MiwzLjY0MiwwLDAsMC0xLjUtMi45OTQsNC4xNzYsNC4xNzYsMCwwLDAtMy0xLjExMSw0LjE1LDQuMTUsMCwwLDAtMywuOTEyLDQuMDE3LDQuMDE3LDAsMCwwLTEuNSwzLjE5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC42NTgsMTQuMDJhMi40LDIuNCwwLDAsMC0uOTA4LS44NzlBNC40LDQuNCwwLDAsMCw0NiwxMi43NUgzNi45NjFhNC4zMjQsNC4zMjQsMCwwLDAtMS43NS4zOTEsMi40OTIsMi40OTIsMCwwLDAtLjg3OS44NzlBMi40NTYsMi40NTYsMCwwLDAsMzQsMTUuMjg5VjIxLjVBMi40NjgsMi40NjgsMCwwLDAsMzYuNSwyNGgxMGEyLjQ0MSwyLjQ0MSwwLDAsMCwxLjc1OC0uNzIzQTIuMzg2LDIuMzg2LDAsMCwwLDQ5LDIxLjVWMTUuMjg5QTIuMzUxLDIuMzUxLDAsMCwwLDQ4LjY1OCwxNC4wMlpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMS44MzEsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzMsMS41MzMsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDAsMSwyLjk3NSwwQTEuNTMzLDEuNTMzLDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMxLjM2MywzNi42MzdBOS4wNjYsOS4wNjYsMCwwLDAsMjguNDgsMzQuNyw4LjgxMyw4LjgxMywwLDAsMCwyNSwzNEgxNmE4LjczMiw4LjczMiwwLDAsMC0zLjUxNi43LDkuMTQ4LDkuMTQ4LDAsMCwwLTIuODQ4LDEuOTM0QTkuMDMsOS4wMywwLDAsMCw3LjcsMzkuNTIsOC43OTQsOC43OTQsMCwwLDAsNyw0M3Y5SDM0VjQzYTguODEzLDguODEzLDAsMCwwLS43LTMuNDhBOS4wNjYsOS4wNjYsMCwwLDAsMzEuMzYzLDM2LjYzN1pNMzEsNDlIMTBWNDNhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDE2LDM3aDlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwzMSw0M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNi44NjMsMzEuMzYzQTkuMTQ4LDkuMTQ4LDAsMCwwLDI4LjgsMjguNTE2YTkuMDUzLDkuMDUzLDAsMCwwLDAtN0E4Ljk3Niw4Ljk3NiwwLDAsMCwyMy45OCwxNi43YTkuMDUzLDkuMDUzLDAsMCwwLTcsMCw5LjE0OCw5LjE0OCwwLDAsMC0yLjg0OCwxLjkzNEE5LjAzLDkuMDMsMCwwLDAsMTIuMiwyMS41MmE5LjA1Myw5LjA1MywwLDAsMCwwLDdBOS4xNjUsOS4xNjUsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTMsOS4wNTMsMCwwLDAsNywwQTkuMDMsOS4wMywwLDAsMCwyNi44NjMsMzEuMzYzWk0yMC41LDMxYTUuNyw1LjcsMCwwLDEtMi4zMjItLjQ1NSw2LjE2Myw2LjE2MywwLDAsMS0zLjIyNC0zLjIyN0E1LjcsNS43LDAsMCwxLDE0LjUsMjVhNS43NzMsNS43NzMsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMTYsNi4xMTYsMCwwLDEsMS45MjEtMS4zQTUuNzEyLDUuNzEyLDAsMCwxLDIwLjUsMTlhNS43ODQsNS43ODQsMCwwLDEsMi4zLjQ2Myw1Ljk3OCw1Ljk3OCwwLDAsMSwzLjIzMSwzLjIyOUE1Ljc5Miw1Ljc5MiwwLDAsMSwyNi41LDI1YTUuNzEzLDUuNzEzLDAsMCwxLS40NTQsMi4zMTksNi4xMTYsNi4xMTYsMCwwLDEtMS4zLDEuOTIzLDYsNiwwLDAsMS0xLjkzNywxLjI5NUE1Ljc3MSw1Ljc3MSwwLDAsMSwyMC41LDMxWiIvPjwvc3ZnPg=="},"broker_id":"c1ecf1d2-0b7e-412c-901c-c4f678fd6348","catalog_id":"xsuaa","catalog_name":"xsuaa","created_at":"2020-08-13T15:09:38.643826Z","updated_at":"2023-08-01T11:49:36.321798Z"},{"id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","ready":true,"name":"feature-flags","description":"Feature Flags service for controlling feature rollout","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["feature-flags"],"metadata":{"longDescription":"Feature Flags service allows you to enable or disable new features at application runtime, based on predefined rules or release plan schedule.","documentationUrl":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US/","providerDisplayName":"SAP","serviceInventoryId":"SERVICE-172","displayName":"Feature Flags","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMzciIGN5PSIxNy41IiByPSI0LjUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOSwyNi41SDM3YTksOSwwLDAsMCwwLTE4SDE5YTksOSwwLDAsMCwwLDE4Wm0xOC0xNWE2LDYsMCwxLDEtNiw2QTYsNiwwLDAsMSwzNywxMS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThaTTM3LDQ2SDE5YTcuNSw3LjUsMCwwLDEsMC0xNUgzN2E3LjUsNy41LDAsMCwxLDAsMTVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzIuNWE2LDYsMCwxLDAsNiw2QTYsNiwwLDAsMCwxOSwzMi41Wk0xOSw0M2E0LjUsNC41LDAsMSwxLDQuNS00LjVBNC41MDUsNC41MDUsMCwwLDEsMTksNDNaIi8+PC9zdmc+","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},"broker_id":"afe404eb-bab7-4748-a302-ebbf64f56a65","catalog_id":"08418a7a-002e-4ff9-b66a-d03fc3d56b16","catalog_name":"feature-flags","created_at":"2020-08-17T09:00:26.04656Z","updated_at":"2023-08-01T11:43:28.836174Z"},{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"},{"id":"0091024c-1648-4716-bd17-604eabd7f480","ready":true,"name":"auditlog-management","description":"Retrieve logs and change retention","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Auditlog Management","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","longDescription":"Retrieve audit logs","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/30ece35bac024ca69de8b16bff79c413.html","serviceInventoryId":"SERVICE-136"},"broker_id":"83d2f1bc-3a71-43ad-a8bf-133d7d2f80c5","catalog_id":"77f00a5c-c213-4f34-b393-13d597c7c7f0-3","catalog_name":"auditlog-management","created_at":"2020-09-04T14:00:21.635804Z","updated_at":"2023-08-01T11:43:30.197999Z"},{"id":"f2117f62-6119-4f06-b4f2-1c50c7248696","ready":true,"name":"auditlog-api","description":"[DEPRECATED] Auditlog API","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"[DEPRECATED] Audit Log Retrieval API v1","serviceInventoryId":"SERVICE-136"},"broker_id":"0c5a2414-e7b1-4802-81e8-199f751d526f","catalog_id":"5b939606-3c99-11e8-b467-oiu5f89f717d-uaa","catalog_name":"auditlog-api","created_at":"2020-09-04T15:54:06.210729Z","updated_at":"2023-08-01T11:43:30.543548Z"},{"id":"fadc3168-639f-46b4-a71b-08e06809fb74","ready":true,"name":"alert-notification","description":"Service that exposes platform events and offers APIs for producing/consuming custom events","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":true,"allow_context_updates":false,"metadata":{"imageUrl":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAYAAACI7Fo9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAADFTSURBVHhe7Z0JdFxXmefvW2rVVt7i2CR2pTNgpg+dKMOcCRwGXNA9ZDgzTMTMgTT0yUmFCQ3hZOIKiVu25aW8yrLjuLJ0FmhIhTBNpxkmlQPTkB4gFZamTQ+dSoY5E9MwVJzYjmzLKkm1vX30le6TtZSkt1XVu+/d3zk6evepvEiq//u++22XQRSKhxk8erQPX84yJXExfNlA0dh566rGz1sDIhec/xp2/mtEJjBvXWPmv17AXw9pUmmDPFFYo5ULj+/Z/kbji22ACp0yj88fOHEjvNHNvrGBuW9u/Y09lxqaf09Y8HcCNfbKa4QFrwdqC/5eYc7rdQR2/v/dzWySLubj0lh+s3Ax/+y+bS/j245Dhe5zQNj/N7hhYJTr7S8G1iZIEonXWC+VCv3imez18sWc09aeCt2HgDtb0K5OgsDPBNYl8G2Ki7ihdib7Me311MiOHRP4li2o0H2ELvB85N1parnJ4ObabzOnBj95H15ahgrdB1CBk8/t4z9J2NnDU6F7nC8ePL75u9EbstRFJx871p0K3cPcduiJW3PdN2WpFfcOELD7T9VfDpgN1lGhe5SbR7518lTk+hReUjxESBVL/3nqJ/1mxE6F7kGoyL2PWbFToXsMKnL/YEbsLP5M8QBU5P4CYi/f6HpfvlmZ70Ko0D0CBN6oyP3HJN8Vz3HvyeLlklChewBIoUF0HS8pPuN0aOMAPOjxsilU6IQDbhvkyWkKzd8813tzDh74eLkIKnTCgYo3WgxDAb4dfW8OXy6CRt0JBqz5E8EPFGCfhm95D1nCF3NQFtyz8JqQKpXw5QyyiEIcM+9eRJvzmuk/H2LR/D+jSijCalfuKTIKMXPW00Q0eXZd07SYwEdjp1FsAHVNO2A9a/BXnOO2yVMDz+2++wW8nIUKnWA+dPQv9/04+u40XjpHvYLWV98uoHp1/pvb5Bu7QUNAV/6OeeIBpgUZZOYLLMqI818zTZC58ndE5/4fMBw//16PvOD/Mc3IyIgjnWBOcPv2PVt/rXQPnIq+M4Wucu45DZVzo/d/5Ca8nIUKnVDAmmfCiaKTe/NQtVTqH/9V9l3seO7Z4X0tG4JAucIXh4Y2/7IWS51ae1MKda/Gd+3RzKpToRMKRFkhAIOX9ph2S7dcei2XYM+nnzq091V8l9JGbt++f+tfs+/MCe94t+0Hd69cKU5+6YPX4WUDGowjlELo2iS+tEVIrJZuufiT1Okjn/sEFXnnePb4vpdT6NV47/n/U8S3LAMxm4VFNFToBAJpFBj7hJeWAVf9U2M/HHhx+IGH8S1KB4EYwt3qr/p737YvdsjG4MsGVOgE8iYXsz3bDeqkByb/V5Luxd0FiP3T7O8G0NQlfMcaPw/Nr5KkQieQNzibefPpPXni0j+knzvyZ4vSMCRipNabJGALdUvpH1KQ1bDKQvedBuMIZP2JH70yGoj146VpNl3+p/yZ9G0fxksigem1YLVOh64e0L0b8FK2CG/n3i/8NvPU3vuJjzeE0n89Lqz+Z5Y9t7nRd2rRCQOe0nZEjmQZbRV+43zuvY3cMpzdlu39QP61yKbk3C0MXMO9p2IfLkAnH75NLB+t/yaFVOtW/TzfN/s+oUInjHNCxLrIp7mh8v+yzw4PEbsvBwG/2HVDZqUYBXTy3TCSexovieT3NTaHauN4ZR6Y1Y8vqdD9xj8XR53JvXeA2/c/vNVMKy5Y95W6utzMyMiOiS3yRcu/r/MctejEEmUWl3Yapbd+ufjcwW3EBuB+ETXfb/+96Hsy+JJIYqhmOdU2tweCCt1HxNWJPL4kDqgdgL5rvDRMs+IRkoBDGfGlLajQfcQGbaqAL4ljSmUtd36UxIB3u/sMQoXuI2Ji2XbFVado1tFmFC+k2qyiezNU6ITBMarlN3wQKY64gZ0gVmGKVlJN0OCBL30NFTqFCCACHZLLxD6orKPiz/agQqcQQ2jhUAsDxLQq0RY9ghYP2bACFTqFGDbIJdPBxMjCkVE+Y0riGoVFVOiE0ROwvs8WOeem0XQCKxY9pFqvO/ASVOgUYtggT5i26BtU816Aq1CbDL60ABU6hRiCFqxz0KGCk04RRAsmz1qECp1CDBvZsmnrHJPIDsbZRdFYukenkIWVXLqd3gAvQYVOGCM7dlieTV5leaKDcY1culI3JVw7BUbuQMSf7UGFTiELRcAXxjBydribiSo0j07xIXFl3HAHHi1/nfbitBkvjgqdQhRmcumLjn/yMVToBAJDEPGlKUQmQPQeHTCTS4+pHom4a9bnxulQoVMIw/ib3gtVcUHkTDCRCp1CFFdpVeMWnfCGFifQy56p0ClEsbGqFYzm0iOa9WEVXoMKnUAWHeJvkBpDdlML0MilG/z+SS9/dRIqdAp5yFV8sTxeKH+NakoJaQpeWYcKnUIcRnPpPazo+z26DhU6hUCMWTjSq+KcQC97pkInEKuFIII2M22EdNZrwoqRd1oVNx8qdD/BeuPXHZGn/BVko3t0ih8xkkv3Sg6d0xhHHmpU6BTi6BHFFfvS/T4UUkcve6ZCJ5AQ8veb+PHDe95YyZ2lQyHnQ4XuI2qI/KYWnZC0/GEOxA+FnAvdo1P8ynqttqyQvVIV1yMHHPk+qNApRBKTlz8wcqM86R2LbgO97JkKnUBooAmh99d+k0FK84DcFuFczs8nqDaDCt1HCIQPh5zLU4f2vvrx0ZeTqDqJ70wji2jL5G9yA8qvkviON6B7dIqf+c7R7c8Mjn8v9vFzf5u85cLPUrdffDFxevenPmFnUq7bgG49fGkLBn+mtIjBwaN9KCDG4ZrXmNJhSA3ZZMvx7z5/OrRxAC8NAy7t6e3//hN4SSGFEz/SrCZMPlR9Pf3jHZ/ZT4VuEV3Agsb3C4jrlzS+IWZZ4+IKYmKqxsQ0ZuaUDJ1ebTL95NFd+/HSMlToPsOG0G+u/TZzavCT91Ghr4AuaJXhYjWNS9TVQD+IWdLY+EIhr0SMKacfP7LDttBvGMk9/Vpkk+l96CbpYv7M/bd8GC8ppOCA0OkevQmDuw/cmBo6csddu048/xYTLb6prC6clfvyl5XudFULDYiI7zcrcgrFKiHF/kgsKvRpwGqDuO/ZfXRfcmfmFRD2BbU3C6J2UtCSotGHA6Uj+FboIO57dw9v++zOEy/pVhssNlhr/BIKhXj0smffCR0st+6SX1J6MnUUSrTLDWcd6gePWGxqETxU6z6XwaNH+z5/4MSNXzx4fDO+RVmAL4Q+13qD5XbaJae0HxD3LcPZbZtOvPjSSPSjpadiHy483veHRfTIP2pw7/b9D2/FLyUfTcUX1vG00MF66665br3xlygEA5Y7G/hX+Re7bsicCaxb9DuFe8+u+mD+5pFvncS3iCbEKDQY14wH9hy6Vbfe7XTNV0KmwTjbgMi/0fW+/GggtmIs5VTk+hTUHOClL9HLnj0l9O17Dm8FgZ+TYzkvW++Qjw8m+G70huwk39UoTjICFBZ9/MhX7sBL3+IJoesuOuS63Sxwju1sfVKN8NNUbzv0xK3NXPWVeDn87jS+JBO/79F1gesuOr5N8SiF0EZLXWngAcBDAi+JIwKntdiESKEPDR3cTKLAJY2he3QbnGd7LNc4nOf7fFkfUWMJzaNDmqyo9LlO4JJYR4pYLSGxWmTFqYJWnyhw9cv5kDSZC9YvZbvky5moVs3hl9vC6imhgkZ2P7pA+NajkxDT1AJW/LwazXZa4CDoMI8K2rSouwMojxShGOGZQhBJxZGRkbb0QUP+GFJLeGmYkCqWhNT7VuElcYSO/c9xIbzGkthvqbyWenFn8mG8JIr1w//tldGu37PkkeiNTK4XOhS71AJackzuSrc7TabAqCJFLHWzQi7MSPkgo7ZV0EvhV6FvGf7286e7rjPdngvcPv6TxLP7tr2Ml0Sx6ehzL52JvtOSgdOF7mrXHaz4RTaQg2KXdokc3G9wu7uFC+mrtNFEnB+Lf/X4njv//NiBZ06OHHq10yL3M++qvWFp6wPnsJEqcrvo8wVdK/R27sVB3LCPXqOODoCwv3ly6KYvP3Rg/6PHh1+mwnYP3znwpWdClQum4xPvF35r2vtxE0Kwz7KR0w+ycJ3QwVWHppNWW3Fwy5XyWGGVciEJ4s6eTN/56MjBF0gQttWZ5QI7M/qXZJKVVxJIrOHVytxQO5MldW8O3H74xNbRwFrLGYPNysXGWfKuEjq46qNsOA9NJ/iW44D1hgg4uOXPPbrvJnDJ/WS1Se/weurQzldvH8snQrXJFR92MF3lY9rrKbwkkl+HrhlAmnWZ6vPtucbKBUB9+lty3/cVhjNc3mgUsN5adbzQrZSe3Bis/PEjxw698Iu/+ymxh+Rv+cP/0P/roPmZcQCraejsD771Il4SyWs//dEbD7x3/ZOyLIbPSoH3oVAUf2Um4Li2euH1/1gp/PHfDH32qZ/94AcC/hJxfH74xI3fj/xBRkFcGN8yBfwsTg1+6j64dkXUHfbjrYiqN6LmtYnCxrCcOnn8oGeCMWCVGy2ZFoDA1N3iz/q9NBL584O7b6wGe2JRTS3FupmiV763LQ9/7/nTzHrL3u3cYaAdFTrsxyd5Jj2hdjnuXqm1ieKaoJDuZoScF11zq5NggY+Xf5n8zq7PPYOXFBdyy4PPbnsx/J4MUjV8xzy3TZ4aeG733S/Adcf26CBySJ05LXLYg/NTb2Y2hyb7vbz/fpd03nKV3Xe635ul01jcy23DT9ya59+ZtiNycNvj/EQjEAd0ROggcgi6OZk60wUOEfSvPzZyn9cDbL/Pjtkqp/129L05mNKClxSX8PGjX7sjF7kpazdDEpcu5eduYdruuusid2oII+zDo2o1F+OqaShowbd9gdX57jrrpVIhKf0i4aX9OqnAQ/d7Xf2Z15irk0i135Y6120H2ip0p0WuKWIpUB3NbuhCaT+lyHTsBOV0IDj36fIvBujpo50BBF7Qrk7m+/4gLcjOdDc2O6ijbUJ33JKXxwpXhespqF7Dt3yJXauuA4Ul/1r8p/Tje7YTm3bsBAu3P1MSN0+sirY4k1TV+NgboXWJUa63vxhYm3C6kGmhNQfaInQnRQ6ueqh6PuNXK74QJ6z6XCAlE5cv5a+XL+aaib7Zvn6lNze8seFzJ+rNdYtZ5Ncm9N5snYXjrxdO4BEWvB5we3XhUsdutVzoToocUmbrAuWk3634Qm44+q2nX4te7/ozwb848cN4uzyGWZc48u60F0p/jdLMmgMtjbo7KXK+PpaDlBkV+WJe2/HJO2GvjZe+BgQObbz6OGg/iRyOSG4mcqClQodiGLsiB1cdOss2BKtJ6qovDQTUEFQC+pjbhr986zcDN+VA4EbGQXsJcNnfj84s2aXXMqFDWavdYpiZ/fhoBjrLqMiXB6Lmt0y94uoGjmaBKSeA45jgdJbnuv5lzsqUWNKB4piPVX6VWi5N2hKhQ4MK1K7jpSUgddYrjqa+/thwoyjfr0BHH7TtwoMT31qSF/d+/mF4suOl59EFDscx+VHgAIg8UXs9vVJ61HGhwwjm81Jv1k6DilSbKq1VLyW/khkmto/YCeCBeUbtbbTtQn8+rPGXlgQirl4XO+zDb37wv5/M9n4g71eB64DIjfTbOyr0RvBNsSdyYapUuiZUSTz64JGmQQWjwP8FPvCSOFJDR+6AB6aCrrTtwgk0Rr4nr4pdD7RlwoniqWA85adAWzPMDLx0NL32p0PHny6rEctpHrFcKl0brSeslrKCmzvBBJJlJTwgaWxcf+BwSClGWDHfywq5Bw/utvUAaQf37D66D85qx8t5dLO17JcPb78TL5cF3Fo3WTyrAxr9mipbDrNTbR0T+t1DIyftBN/kaXf9HdOW3IrIwcpVAig1LkdTK3kTPKsVNzDjAyOH9rqu5BO+j3Gey6z0sLxWLcdGRozVp998+JsnT/VscUWQzorQ4YSVfGRL2m9R9KWAPflA+ZXkUmm0pXDEdYfDDScV65YcAm996njKisj18VNgAY1sGWSVicMJL+B9wJ/FtzsOiBzado14RGNcIIsvV+TU0Kfvu2387waQIuE7ZDAbSe+9OUdFPgPUSiQnf5YwK3LAtkWHN6idohhIoUF03UrgDfaxF5VuW0Mkg0gu9HJC9pFDgx0L/Fn5GfaxlcwThwcNZySgVBZaUzspGiMWHQT+va73ND333M/A/LuE9tu01U5D20Jfbj+5ElZFDsJwejLNen4icfLgUNur7nRLbrU3H/bsq2QlZdSVhyOEXw5cn54MxRyfzbcSS5VnAvAg+mnwnenToasH6D78CtBK/NHy/07Z7ROw5bqDyw77Yrw0BYg8MHU2Y1bkkGIC6+f0ZJrJOtuyybNLYVfkALj6JVYz/KCFEVKT2z9y3c2X/9EVs84h0PahY3+176s9HyxAFx4V+QzgpsPIr9H7P3KTE81AloUOb9IxOWx5oGNQLOW+8cRxw64n/HtwgiqkmJyonV8I63hFwfLA9wMPLLtTdhgYiMhVDO/ZdU6l77oP3fsvGHgzbaqdb3sqbm6q7Mfhd9Fo+jQQaAMLDlscGODp5Fw/y667LZe9crkQj1QSRstandiLr8Qq9XLqz0f2tmWfDkHAs2qPIw+s1Vw5/dihHfvx0jLgOv8yGE8V1WhitGtDS/bx4LrDHDNIlf08dH0Kzi3HX/ItIO6YUi1ukd7OvUc6m21Vd58loUP121tyLG9FeIpUK13FXB4w0oUGVq9VU2IXskYdG3h0ZF/Lc+y6JXdC5GDNr9GqcaP7czPcvv/hrfpwhJrKxEpsJC4wwZgQjFp+2EKvO/SEExdok2cyFiFWmzk0Qr7SPNS4p1zJaERYtPg1/PRr5qwj039mvTJZ2CxczG8M1QrtGOVlSejgQltxOWeCb5dSX8kcWtFygiDs7l+NIksSuo57O9aOxhmIa7wthjIBlimVRS0RCARLcx+YXVo5G+G1AqQrV3oYOGXNzbL++N++MhqyfkyQ29ADXiC6xo3x8cYnwCvNVKaFDm70BbXX9J4Q4GqXcs9m0o2B8ssBIjdSOOIUvFzJf/344KKpHO0CAowQe4jIE9mvHh+arXr7kx2PjC/lNYE1j3Oj/YcPH2776KdND/7NS2eCV5NllZsAAa+PVX+VspKXJg3TIaiSai3KLpYnSld1SYb+LLjr7RI5ENaEjtaFQ1nutdzl/rXs5LyfT4SVlvx/9aFyphMi9wKwL4a8NAS8/CBywJTQwZpb2VuCy34VN5k8YeCNabeU1iyqoqAuTrQ1I90JoCR3oZvIMmrTgwShyKdHmyD6KOBOoAs8Vc/HTw1+8j4/jbk2LHRwp8dUaz3mXeLlzOOZkRWfnPAgaafIgYBczrt1HnyQUZqOh+rVpjKd3DtGprcN+JIYIBD4qYlTA34TuI5hodcCWnJuy6RR5Hq5tC4krPiAgH0qpNDwsi2ApxFjK661jH2alIW9OF42CCnVfEQrd9YD0RR84X70vDQcNuhE4QmpGArGgTU/x0YKZoUObnG4ejadfezYspFhO+k6O/Qql9NPHtu7YtQavn/ojoP2VxYpJZ5VixxSS5LGx1UNxUKsXAgwahEscCvaYO/dcfAOlQ/EWaSVIhKTbUU6zQxbjr3w/OnwtW2vJDQDBNq21l9Pw9FVfrTgCzEkdKvFMfLUWOG6ruqyhTEgIqfyymbQhKnCpkDJUNGOmT57s80mJOJmocM+vF94M2unAcSLrOi6gxAnLLSggjVfy1dXPGRB4NWBdosc6Ea1acu4ssgh720mAzAphV1t6byKnwNtRlhR6OCyWtmbM7XxvJEAXFkLdUQY4UDQ0Bz0cSVsKjiocVx88MDwjXjpSUKq7KpgHIzN8nOgzQgrCh32pfjSMFDmuja8cgAOELT2W3OgzPemobECLxcBngyk+mAwI75lmHP1bkOz3Sj20ANtMCPPz4E2Iyy7Rwe39azcZ7qYJFy7kPla5oChfepy1V/tIIyuFMuo6MoZYnNnzlmhXbXzneCGo99++rXodW0raFoIuOkw/bSfeTtLLbgxlrXoZZU3bc1koVJa1aUYTll1cUJHU0VQS69/QKxA/7D18BGrxV5enKmbpjjG3H04DEakIjfOkkIH19PKHDhWKOeNVMDprGJqnqnwYuR6MVo7l76WVztSg94uIprY9j06CBzmpdF9uDWWFDpEw81aNVkS0eqIYqrhBUo/r2InO+YGOkVELeeuYeX+v8gc2d/pPLeX0PfhIPCVTiOhLM2SQrcSDeflav5xCwcvZA7vegaaOqCGG98iCk6tF9YilFxO4FD5d/fQgyfxkmhCDO7LbiFQ8AICd2qUkt9pKnSoVDMbbYa8eS9Xs9S+CoBlzw6nbgLrTprg13CV9HIih4kycOqKKKuemKjSV7/QsiOaYR8Ox/9CZxkVuHM0jbpbqYSTahPF3wtN9jvVbNHuLjaryLKCrmPPNR1aAVb8shxJCVpgJrjHsOg6Zix++PAe4vfvoczfjzs5541WtLWWphbdSu68jxUMVZoZBcpIYZQxXrqahd83BDKhEw+sOETzZ2MdmorOqr0db4l1AjgtBF/aBjrLaKCttSwSOriZZktSIaXWZzIIZwQ4Y2xh95bbYFlmWtiD84pjoHYfpvA0C2aKiOu/e3eG+L06DGywOz12bmcZDbS1lkVCh0MK8aVhQppkKqVmhk7n2VeCbcyJXjWzwKz0oJxQ+JQXKufODP47S6e2QqANJsImpV9YOnSRYp5FQq+rAdMlqVFGtPVkX44w4/7A3GSAT4Nw4QP25fj2sois0JHSX6eB8tObp04bqoXQC170EU7UTW8f84Jx8EZ9i4kWzeTP67Ua2hya6G/VlBbIAMChiHhJPLAVgeyE11pZ9bnwhdC1i05b0QNt76qfy1EL3hnmCV2fRoqXhlDK44XnHt1zE162hM/sfEzDl0QD+faNSE54vaAGRD+lBuNRRi5xjFpq1aEEFOPMc90rasD0CN8uTmr5HtrtATmj8EgtKkGN+DHJKwHCBssNATYqcncwT+g11dxhCXDwQV9IbbnQYUwTviQagY0OnJN7crAdwbcolLYwK3QraTVFqBbdOkHVTUTUao5DShE8E6gN4DXBEx4KhRxmhS6wjOkocF+g9W67F7iaF1LPDm+77hrtQgJqA+jBC60Fgsr37h7edu/eY/vwLd8zK3Qr+/Mwq7QsraYDvzSznobbeAOtLcD3MUK9n5YydPDgZhD3Oa6neEnpyYxLIeK7Ip1iVugwuhhfGkKWZBTitJbvnZWgTHzwSpKEmIjKnmhocSMwo++eQ0++VKz0FS5J0bSiaY30Hsw6hAds40U+Z1bosmZuAKSmCG3Zn9c7NFPOKWBvviFQTXo1lgFCgvgOiG3o4PHN+HbLgXl/O/cf3gon+54V+gqXK/KVnoI58LxkuCbEyzTy6PCL+p26ypR15uql3LMnd694MqpdrB7R3GngFJjVASHTK2vLtrCSRGOYZlmMV1BwQGAiCQkF+2UVxVR1/sktMIevmxNzPSE+d9jh9Br8H1QxmByraQNG3hcb+dJAKw7VII2GRRdZ1rRbqSrtGfk7d2AjCYDAo4yQ2xSqJKD6zQsih3QgtC6PVvqKUKUILcwVmUuIsrJI5AAIEPbIv6tGinD4Bb5ti0aAbXr/fUmIFc/WghmjD38rsScv0rDoVs4876pdSH4lc+AZvGwZJFl0GJixjq+kjh8cIrrMc67lriqBxuBM/CVLwPZlIzcxAMNF8C3DQGdgObIhU6qzpkebAeBdfG34/o6dfe8WGhZdQJypfTAE4rpDalvqz6Pc0meEOwlMyIF8N142gDfJWm4q9Q5+InGtWo5dx47HYeQVfMA9eAPjlyJGEYvr1XqCRJGDtYT97j17HzwJD9a3StFZy+3EQxaCYvD3wfhwfMsUl+tM0orIAQmZCzJ7lYZFN2s1q5Uq2hIZazpVxWmsxA+swIuTua+f2PWJufX+Qamcyz64Y8k4BORqwUWFa3hIfHXkz1oes3ASSEdNSaHkuNKVUtSZSHWrgYel2Qk7nxk8MY7YkOX/Hzykvd5fsBINi272qccoQrEdIgfgTTHXcraKHq7eEDcEbsBigzVnGOM19ir+TArwQDsrrplJR7VJ5MBZtcd0kVUQ2SyBDoi+t+oNoZs9Wy0aZNraNrqKq872O4OVdbzJRawVu5krAy5gLwn7uqeP77oT32pKjyabftO6AfCS8LDKtglcB4qfICaEl4bgkWRL6ApjPtjsNWbz6GbgtNaP+50LnAmuizvIyoWNgSnTM+2WAg5duDYyMWDFQwFvQ59YW1fIyffDFCGre14nGFO7TA0eDXPIM/MIOgULT3d8bRhFba+jCvsrfaSUyMcaAS8nDn3g5UoeDl0YOWS9mEUfca2yfHzh7Di3YmX4p5OAB2l0Eg/AsvYMi6x27qHmFixZ9G5ea/sTto8VG4ISNZS4N53ZBoc+QL668UWLqIGobZcO3HfwNtjp/Xy74hZ2gIeRqLEd9z7M5LdZWbIndOq6I9ZSsQz+3E7Aiuvu+9tlpuH6/cWR+z9h57AHVWPiFwK9eTv10OC+/9ej967aFJgkItfP892N+fKdxszsgxBvb26gojHUomvIQsRV7czElzV8pSFwds4hf3C6ix2xC4raPxZZZTuoZqUYpBNUEOeKBxIE5Yw+YPk2x4S8CGt2/yLLMgoHWt+11oxHDu18GEQdW3D0E4jdzmEPVUFK3LM344ve5YoW6Oj+vBMoiO7RLflwvM3giB1A1E8e27sfL2eBgQ52zm27JAYaI5vx0pPA/rxqclxYS2lTfnvamNE9utlAhapqiOXd6UpBgE4/qNFsoI5lNFTlyO99Xw4l2NO0lbNTqEx7GpZIa4xqBRYs+rwJ0a4EBA+BOih9hFr1PraSAeFDhR18LFVwU5XcsX9tFTTN5F9YFpm3zqpMRhQT8u+wr4d2URA+zG2DD4iS/+XwPQyUueKXzsB5OzqrMv6MPrNI8X0wz7RF53l22jJ44w2zga0m51p3UfH2Xg4eekt5MxRv0/mEageBHHicm+jXA3iS6v2Wxmv4kmu2J6zWHkvLMohadNZCjlLRkGdcQBA7BPDA0jHBcHz7/hFLPdOkAPl+6KXHy47Cawz1LtoEy7PmXLmZY4K9R4SV8gxS0Tkplv/Sgcw2fNuTQJUhzFLDy44BD1l82VKgPBlf+hYGpn6clftMTXHpFS8lnzyRbvkYqXZy164Tz1e10Oybnw9GUDcr5oKaUECqXJp+wjW8GJbnkSpWi6FgsMRrSsHp4YftZOH33E4g+wGBUbxclgd27bn1nLbecvUiFFNBnQVe+hJLQg/XLqW+lkk/jJfEA4UyZo+L1gmEIiio1vMBJBTCPF9i5GqR59iSygTjkiw3utpExMU1RUEcH5p2V4VCV4DJDw91/vhg6FwsKn2FTuTWId0JmRC8XJbU0ME7LqirLFc+QnrVa8dUm2V6j24hIIKtmxcAkV9kAznLM8mEGqpIWqIkBVNv19j0eak7+2Y9mjtb4zMXpHDmksCnJgVmYErmB0p1ZWB6nX6jzOW/MPTQ040hjB0EXOcNAfvtvlYw407LmmYrSMoxtFbe0oab4QKeEfokzzgyANEsk2oweX6qpwAHH+BbHQFGZ+mVhHoxkf6BX9ISwozxUmVVs1fZZqVWxGswYNHeZLtN/SBUoV74q4ceuAkviWXuIMhOwUy789cELvWP7N3p2u432N5NTD+YymrEMetv5mCFu3YefamKui0/jOFBBtWSeOlLWKgeM/v0FjVEfL4ZRA5z0/CyY2iygN6s9xW273FvWg+i9BDMgnJifMs2nGZ84KNis0ArZMJ78CoN1x1SS42VQRiWj5EyNqkZushd0+Chqegtxd4AjHYAlXVOjPCCLYKZ/n3FZvMLzddb3KNzHIuqbJTIww/haCFw193UxQUwmoLKAc31x/w6McLLjIUFgyLbOIQBHirtyte7mYbQo6xoyqLz00JHKnnVcSByOH0EL13HlBgkYigEpMVAQHhpmjArGRa6wkUTiOHxyjwBJHdkSIrbaAjdShnshMQT19I5Lkcd22O2BIK6y+AsNXxpGjMRd9HkcWELoXXuMzSEbiVYMb1vIiogB/tfzeUjhQSNnO452GNbHd/FibxhD7KGgraEbtZb9Soze3QpaNq9UZgwUXt0yC5sDJQGWp0ftgNPWB/BOlQ3vQ1qBOJMnIOm2Hz4WfFWvUjjnWUlxaZxXNztUeKFQN4Whk5ASSS+5SpI6wqEIJdZq963YLDncgwNDW2ua/YseoDtzCBTtzFrQsym2Ljpzc9FBbl7z7sEUPcMrZpus+7QGUha2tKsVTezPxdA5DZn0LMiZ3pb6kVmf4pW9jKyzUBJJ4EiEBjC4GZXngTAqhv9GcLrzOzP64y9gC+MCjOzTfAyVyw6MmfRgSoKEhd5nwsElJw8sNGvrOKvnHa7HOA1mhFeVbH3/opy5t/TXmVW6PCmN2vdOI6N/ZdB44fluRGw7E6WdvoRXjN2rPHCgzeWA7YwEgrYCsSZ2SZ4nXkbICv79CnZ+GF5bgVKOxdNhO0AcAoOCQc1LiTErHzoplm3HWbQKwxvKzhp5t/zOvOEbmWfXkPkCx342vD9H7ZT7eUEXZxM5htTqqz4czPrtk+pQVvlwHR/Pp95Qg8xqmlXR2ZDhg/Lczt2qr2coI+bORqaNBpeiKbgVXPMuO0w+cbu0VF0fz6feUKfezSxUUK8hiZZ3vXNGEaAOEWnXHj4d0My29He+FZh1m2vMeyAYvMYJbo/n888oQNm9+nAuBL2TDCrmxPbLjYQwjqukiLV1Wzk/hkOrxbTO23NzXxvFdX+dpDuz+ezSOiWaoNZJj64+0BHRyI5hZU0ox0gLgD5fDP92W6D55cPmnWzsuGHJ7jtFS1sawtF9+eLWST0Hs34L0UHTiK9IPd6w6pbqPu3CvR1b1Rr/SSLfIYw/rwYOAUHtoR4uSJTDJdUF78tTdEJr8ztLPqJQqWTlX1qWQslvRCUA0tgNk5hFvj7V3Pl9BpFSnrB8ggas2SFZDdXNyU6u4M64WcbkRgig5qtpOmjs5cVTP+gAqyCajyiVWYrAK46VOM9dmjHfq+4l/Iy03r6NMnwe2nnnv1bKzar4cym8fxCU6FD9NeKVbsguXd6ixkCjPHBhWbQXXUzriwJCEv0PMD3a2aM0ziKpjSb5++bSeP5iaZChyeileg7BOUgmIJXxNKK87TBVYcRTF60NpLa3HU3I7qd+/dvnZLtBeHAONFoe3OWjHp0WxgACEG5c2iVK3u9zeDk+CF480EtPbjq+JbnEJsMb4QtitG57QCM+bJrzanbvjRLCh2mfVpx3+sqOzC4u7Onj9jFqdM34ee3jiunoJYe3/IcMBxC1hYL3cyACUjNlhV71hygbvvSLCl0oIszb9Xh6OGzWozoHziHnBH6Gr6S9voJISIbjC8cDgEPODNBuDIbSamaPWtu1oPwG8sK3cpMMEBRtf7UnmPEtq86EYwDd93LllxHUhe3koILbTQIBzGdCcn+0c1mPAg/sqzQ4ZdlZVg/WPVLag+xEXgrzT1zgZ+ZH0QOiGhxIM6MCz3FhVOqzem84EF0SYj42FArWVbowBq24jurbukoaQy86aAQBi89j6TNH/sNxVZGXeid+w9vHVcitisqYcINDcItz4pCh/JMKGPES8OAVb+oxoh8ylqZtqMD54376U0nq/OFvpqvGfqdQxXluBxJKyq+YRFqzY2xotCBtXzZklVXVTl+bzqzDS+JwkodAYw+9ltAaG6xDATEjOaxpQiTnJTtzxyk1twYhoQOb174JeKlYRpWXe7OkFhEY7aLDyyL1eAlqTR+r3PORYOAmBHRzVjzqO2fFfzMzUT3/YwhoQNW9+qMUkdnuQ3EdROZ7eIDy2Km3NMLCJo4a83NuNDlSCArKPbPmYP0r99+5lYxLHTIB1ux6oAgCf33ph8lyoWHN5DR73fGskz5z7JwIXxh3IXetX/41pJoP50GrGKMxQMoJoQOrOetjUVmkDbtwkeIc+GNejEzeePDvrMsosY0AnHwQDRizQePHu0blboymoZv2ADiIeT38bcPU0KHvbrVmWokuvBGy4D9Xnq5ijNmzWt1Pl1T7J8Y68d4iF1MCR3YwFYt54hJdOGhVh1fNkVVVN/OJ2OnBWe0OOhL6ZFtY6IzswX9GA+xi6UC47uHRk5OqF3Wfml8BF0buNA/sncnMW7Xn+x4ZFxbYriCJtaK3zyx/Tq8pDQBCmPeEnpzimY/AAc1HevVeoKm1Mxh2qIDcBqpEZe2KXINnZXW5UkaO7WcVY/yK59S4mdgX35J6806IXJgHU/utNxOYknoAFSA4UvTqHI9drFrAzFiXy7jwFrMRPgBEPmkEMlVhJmgnV3gXHuvTedpF5aFDoE5Kw0vOvXaVP9Y9CpignNLReA5RnOkpdWLCGIwPVHnbFe/AeBB9soaDcBZxLLQgfVMNWXZhZ+mKtQTXzj41afx0tVYHcThVwb3D996sR50JPgGQG8/ddmtY0voEPmEXwBemkdT0aSgJFPpzB34jqtp9r1KDlR4eQ0Q+ajUm3UiXw5AStcvbb+twpbQAfgFWM2tN1BEdEHpzm7ff2IrvuNampXF8rztH6Gn0EUuKpojD0DwouykdCkzOPIuXadKA7bcWrmOzqur824XO3gwC79PUXUm0OQFdh065qjIAch40Jy5fRwROuyd4FACvLSEKlbQeSXmerEvbF+VVURd92lA5OfqXY6KHEZke33mXrtwzO+EtAfMScNLS6hSDYt9xLViX9i+GuQY3wfoWiFyyOjQgRLO4egG0/Z+fRoQ+zlpdT516Mv78C1XsXCeXIiVfF0w0wqRw/YIMjo0yu4cjkeSbO/Xp9EUAV2sM2k3ij2oXpkQC9/nKkbxbUPLjiMP3dEKkUMxFt2XO4u9YdpLAAP531RW27Z0DBdCqyIo89jQ5+7Dt1wB1PoLKt+/hq+n/VipBRVvkhROX6gHUqrqUA4N45cx2e2mJUIHUkNH7rig9tq3dgyLYj1duR7mfHJkB3XlOg2IvKr05MarKOG0yKHH/MuHt9+JlxQHcdx114Fo6VWs9Xr4WTQVlSanBi5KGwqDB04QfdQT6QwdPLh5QuzNj5U1x0UOwbdVsuJYJR1lPhz+3BL+/ic/fPXDiQ+Wqlro3+JblpElMVbhV33hj/7NLaWf/+h/nMK3KW0Cgm5vS6u+XxFUx+sGQOQwC58G31pHy1z3udjqX18AwwVQX1eYuvJtAlx1pASTo7VQ2smgmw5kaSCAS0XeWtoidOCuXSeen7bsjgwFBMLRnuI67dLAyN776dywFrH7wPCNE4G12fGy2O+0qw7QIRLto21CBz6788RLdRRypG0R4MI9aA1XS2d2f8GzZ493gkZUvc4nLyvRtCirjltxAPr7N7GTCZpGaw9tFTrgtNiBaHesCOWSx3Z8gZZL2mTX8EO3jomh9FRdW3R4olNArvwavpSgU1zbR9uFDrRC7I29e5jN9aiTaerOmwesuKz2ZC7W2KQsK/iu84Al38hNDFCRt5eOCB24Z/fRfZeVbscnhgS6VqE+ppp5xGVFNm5lJtgWTl6SQumaoLTETdehgbfO0TGhA/fuHt52SelpSeNCpKuvuDogZI4P3kWrrJpwReDhtCCpMVW1eazpCtAUWmfpqNCBB/YcuvWcHGvZ7Lhod1+xF5UzDw3dTQU/TbsFDsBQR5j3RkXeOToudABq49+SY/mlZqc7Qah7NerjxGy3OJY55MM9fCcEDkE3GL9Fa9c7jyuEDsC5bGfVnpyI+JZFe4FAtA/1svVsN6pmh4e2eb4hBXLhteCqVElgBgRRaYvAARA5TIehgyPcgWuEDsCc94tsIOd0RL4ZLB9E3dFwoY+tZQNCOe8lK797ePhGkekbqDDR5MRkNd4ucetAZP1qvpykM9jdg6uErtPKIF0zApFuFAmwhW5GzAWUSp5ESw+uOct0JaekwEBNCyZq1Sr+SnuBDjRoTqH7cXfhSqED7XLlF8IHIygajRSjUikb5tTCkZ33vIC/5CpA2EEl0C8GewcqotpflVG/2EbXfCH6wAg42APforgI1wpdx8mGGLMwLIdC0W4URmI+iMRCOMgUAqJQPNgBi+82Yc+Fps7cj+uFDmzfc3jrOakn18qovFH4UGRa/D0oIE3lg9NufjjIF+H4YE5VSqoqFg/v2W65dhvEHNACcY2J9EuIjStcIC5KKC5rXFyQhZhbhK1Do+rkQITQdf506PjTZTXiymH+XCCI+OkPgA+EEM/IRU4RiyyD5s3P07Qr46E1NhBTNBlpsopkxMRlRYvJkojcJOalaHSecZNJWspKBkQJHYCc+6jSm2333p0yA0TU4cDJkMzmqKtODsQJXQdm0o2pXWkFcfSklDYAbnovV8vSCjcyIVboOp0M1vkFKGFdjcQM7R0nF+KFDkAq7jIKpqjgnQX24ev4SooWvpCPJ4SuA4K/iMJptwbsSIEK3Ht4Sug61MKbR9+Dd7Nyjgrce3hS6HOBoF1JjaZolL45usDpHtzbeF7oOlB0M66EU05OoiUZcM9jbDVD02T+wDdC1wG3foIJJKtKINGOLjk3AeLu5uq5CKPkqXvuL3wn9LlAW2wtoCWrajDhVUtPxU0BfC30hcB+vjwteJJFD3vuAKMWQdxdSMzRElUKQIW+BLCnr2lcQtS4eG3a4ru1Ag+EHWKkQpST8mC1WZEr0D03ZSFU6CbQxV9XA/01NZBodzfdXGsdZuRCSNUKNFJOMQIVuk0guCeybFxSmbjMsA2rDw8C+CxofL+qMYYeBiyjlTiklViklEKsXABBs5pW4lm1xGlqEUnBIrXUFGsg9P8BcsuYGVIIG+4AAAAASUVORK5CYII=","supportUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","displayName":"Alert Notification","documentationUrl":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION","serviceInventoryId":"SERVICE-334","shareable":true,"sap":{"tenant_aware":true,"instance_isolation":true}},"broker_id":"25f98692-3b09-4829-9c41-a506ae46e82b","catalog_id":"66c46141-e003-474e-8c3e-9f98fa43e418","catalog_name":"alert-notification","created_at":"2020-09-18T12:00:42.126327Z","updated_at":"2023-08-01T11:43:31.52367Z"},{"id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","ready":true,"name":"identity","description":"Cloud Identity Services","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":false,"allow_context_updates":false,"metadata":{"longDescription":"Cloud Identity Services provide basic capabilities for user authentication.","documentationUrl":"https://help.sap.com/IAS","serviceInventoryId":"SERVICE-111","displayName":"Cloud Identity Services","dataCenterUrl":"https://eu-osb.accounts400.ondemand.com","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+"},"broker_id":"34e74589-2747-4786-bb56-72eda8366662","catalog_id":"8b37dc12-86d6-4ee7-a83c-fc90ba8cfa25","catalog_name":"identity","created_at":"2022-01-28T14:43:05.77551Z","updated_at":"2023-08-01T11:43:53.006427Z"},{"id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","ready":true,"name":"ibanservice","description":"Check validity and get details of given IBAN number.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"IBAN Service","longDescription":"Check validity and get details of given IBAN number.","providerDisplayName":"SAP SE","sapservice":{"providesui":"false"},"supportedPlatforms":["cloudfoundry"]},"broker_id":"9a8cc8c9-8a51-48e7-aa80-8d8d86f30329","catalog_id":"08b9ac4d-fcc7-4d5d-9ead-f769d992a5b8","catalog_name":"ibanservice","created_at":"2022-02-11T16:13:45.641778Z","updated_at":"2023-07-17T09:01:28.519675Z"},{"id":"b4842a3a-df33-4cec-a879-9b4b58691845","ready":true,"name":"poc-broker-test","description":"Provides an overview of any service instances and bindings that have been created by a platform.","bindable":true,"instances_retrievable":true,"bindings_retrievable":true,"plan_updateable":true,"allow_context_updates":false,"tags":["poc-broker-test"],"metadata":{"shareable":true},"broker_id":"a9068a87-039e-40ac-8b36-460334b3e48e","catalog_id":"42f3eb81-4b36-4a61-a728-7bb1c261c892","catalog_name":"poc-broker-test","created_at":"2022-02-24T14:22:07.536644Z","updated_at":"2022-02-24T14:22:07.642391Z"},{"id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","ready":true,"name":"print","description":"Manage print queues, connect print clients and monitor print status","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["Print","Output Management"],"metadata":{"displayName":"Print Service","providerDisplayName":"SAP Cloud Platform","longDescription":"Manage print queues, connect print clients and monitor print status","createInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","updateInstanceDocumentationUrl":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","documentationURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","supportURL":"https://launchpad.support.sap.com"},"broker_id":"2b5b3e26-6363-4a16-abd9-930c4bcd87e7","catalog_id":"1e0ab901-c1b1-42e7-b4e5-82e8f409abf1","catalog_name":"print","created_at":"2022-03-10T06:17:08.046826Z","updated_at":"2023-08-01T11:44:00.148943Z"},{"id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","ready":true,"name":"one-mds","description":"Service for master data integration","bindable":true,"instances_retrievable":true,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":true,"metadata":{"displayName":"SAP Master Data Integration","imageUrl":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","longDescription":"SAP Master Data Integration offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. SAP Master Data Integration can only be used for SAP to SAP Integration. It must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Master Data Orchestration is part of SAP Master Data Integration and can only be used in conjunction with SAP Master Data Integration.","documentationUrl":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},"broker_id":"77d66285-d0f4-4906-a46d-203538d8ee14","catalog_id":"40dc21fb-08bd-4835-8300-739ad3028970","catalog_name":"one-mds","created_at":"2022-12-16T08:30:57.81019Z","updated_at":"2023-08-01T11:44:28.160669Z"},{"id":"79fa40f4-ae94-4397-b742-1a56d95e4897","ready":true,"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"metadata":{"displayName":"Cloud Integration Automation Service","sap":{"tenant_aware":true,"instance_isolation":false}},"broker_id":"9d61fd1e-06fd-4d59-abb1-26e37b281f43","catalog_id":"7f20668d-3a23-4ee5-a3d7-b4bab69cef01","catalog_name":"cias","created_at":"2023-02-20T13:49:30.67577Z","updated_at":"2023-08-01T11:44:31.651052Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 12:34:09 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3bd48953-73cc-452d-5a53-0b46841d3490 + - 585971ea-f403-4056-503e-f717c01c1afb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 176.8592ms + duration: 252.614706ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4aa5f3db-0378-b423-2abd-fbdd506a64f5 + - c9811df7-5e5f-b00c-5eb0-46a552ea3a8d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:43:36 GMT + - Tue, 01 Aug 2023 12:34:10 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 22a27244-f5df-4473-78d1-a26378b9c93e + - 44435bc6-86e5-45d7-660e-b4ce108768cd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 446.7923ms + duration: 232.078976ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml b/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml index db291265..ef324b25 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 07e0518c-6531-0b2c-7355-923f1743ff32 + - 561465c8-6f72-00e0-3e0a-a5db9ea471d8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:22 GMT + - Tue, 01 Aug 2023 12:34:11 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 17d33200-2657-4603-4d2f-423b85e58782 + - 275c7e48-312c-49a7-40f4-493ec1827110 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 534.6508ms + duration: 249.997807ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ecdee1cc-846c-730d-092a-5e934c167f29 + - 50839f62-9012-1740-cc40-9ef77e6822a3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:47:22 GMT + - Tue, 01 Aug 2023 12:34:11 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 3e311673-5f05-4ffd-4f0c-7be4e19d92ea + - 09f370eb-ee6d-401b-4e9c-10196509892e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 198.0318ms + duration: 168.830588ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ecdee1cc-846c-730d-092a-5e934c167f29 + - 50839f62-9012-1740-cc40-9ef77e6822a3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:23 GMT + - Tue, 01 Aug 2023 12:34:11 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 36fdb395-c6be-4203-63e5-632be8200b48 + - 6043c86f-7f54-45d8-7644-c110876a596c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 214.4253ms + duration: 165.711409ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8e1ef733-6540-cdce-8627-756d1af1b7b1 + - 72f9050b-6987-bcad-b881-94dc99e62542 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:23 GMT + - Tue, 01 Aug 2023 12:34:11 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8bedf9b6-f558-45e0-7b8d-e7b339407fa5 + - 8ae9c069-18e8-4c7d-70e4-a97cf2b0caeb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 451.795ms + duration: 232.127011ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d69a2d60-363d-ebe0-eba5-a80f898416f7 + - 14a9fe63-645b-b0fb-2a5a-8f4dc49dcc5c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:47:23 GMT + - Tue, 01 Aug 2023 12:34:11 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f4dd126e-56b3-44f2-7341-ef7c3de0f19c + - 2e1a2b03-d9c6-4aba-4270-45602b20cdae X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.3299ms + duration: 220.148893ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d69a2d60-363d-ebe0-eba5-a80f898416f7 + - 14a9fe63-645b-b0fb-2a5a-8f4dc49dcc5c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:24 GMT + - Tue, 01 Aug 2023 12:34:12 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 164bbc7a-b1ab-45d2-4599-7aae0bdbbd9a + - 8ef024af-71b2-4bf3-6915-4f065ea046a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 150.0327ms + duration: 187.286394ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c248faac-ebb0-f71f-a84f-8d1fb943959b + - 03971510-2795-56f6-cdb2-ed3ab64ea84c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:24 GMT + - Tue, 01 Aug 2023 12:34:12 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0f4d658a-0203-406e-4edb-a47ba7175e63 + - 8070fb42-3313-4a48-7eb8-1748fd416f8d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.497ms + duration: 215.28586ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 94a6ed5c-82ab-18a9-c486-aa308bbdabff + - e770a36f-2b21-d449-b313-64b45a028aea X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:47:24 GMT + - Tue, 01 Aug 2023 12:34:12 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e9c818ba-2091-4a99-4bc3-54e57b60ce99 + - a6d58417-6c81-42ad-5c10-d861d17a37e3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.5048ms + duration: 192.254273ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 94a6ed5c-82ab-18a9-c486-aa308bbdabff + - e770a36f-2b21-d449-b313-64b45a028aea X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:24 GMT + - Tue, 01 Aug 2023 12:34:12 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 59e50f9c-13e7-4f84-513a-ab7d09fea7ee + - 01109e21-3a13-448c-452f-249756e5e727 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 152.6247ms + duration: 130.210957ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a79bae45-2f36-90c8-0c95-7b9b76b30684 + - 4170e4c1-21d4-4071-f59a-85d3b144c053 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:25 GMT + - Tue, 01 Aug 2023 12:34:13 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 85a001f3-ecda-4bd9-5197-99f24986424f + - 19cd9c31-23b7-4c09-5a01-fc130721daf8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 507.4371ms + duration: 328.229635ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e2d47419-79f7-f592-e997-974ed80c7773 + - 6bd61521-5748-3c86-904b-780dc8e86c17 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:47:25 GMT + - Tue, 01 Aug 2023 12:34:13 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4dd648c3-2135-4b17-7c6d-e7f06d9e8769 + - 92e38355-ec41-4c55-72c6-231b35ef552b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 178.7913ms + duration: 166.633887ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e2d47419-79f7-f592-e997-974ed80c7773 + - 6bd61521-5748-3c86-904b-780dc8e86c17 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:25 GMT + - Tue, 01 Aug 2023 12:34:13 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ecf8a0b1-e675-4e5d-5aa2-3b98f5ebf480 + - 676d8a26-6101-4ce1-6efb-2509e37132d5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 129.8671ms + duration: 183.706627ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1d2633df-b95c-d764-bd76-ca01faaafe25 + - aef3c5a4-3b26-9ef4-7541-dbad456cf292 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:26 GMT + - Tue, 01 Aug 2023 12:34:14 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ec23e676-84fb-4703-6dc8-46f441d2fea7 + - 7732e116-0d6d-423d-4737-a6788a6462ab X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 368.6067ms + duration: 519.544627ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0c5ee8fa-13b0-9cf8-803a-8a13294ffec6 + - 25ef1bbb-de27-0f7b-f8bb-22bab1741e71 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:47:26 GMT + - Tue, 01 Aug 2023 12:34:14 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9b41767c-8fd3-49fe-5fd5-99d29281e6a1 + - f79c6505-dafb-409d-6125-ca56c4d65ddc X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 171.0355ms + duration: 169.682844ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0c5ee8fa-13b0-9cf8-803a-8a13294ffec6 + - 25ef1bbb-de27-0f7b-f8bb-22bab1741e71 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:26 GMT + - Tue, 01 Aug 2023 12:34:14 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 866cfba5-3ba3-4096-5cdf-7104685c8539 + - 0f2d2400-7055-454b-77e4-f05a95adee5b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 148.7918ms + duration: 112.527964ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d35d7589-3c7a-bee4-4b6f-11b7bd2155d7 + - 67f32e7c-da7d-f780-9311-a9467b381c15 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:47:27 GMT + - Tue, 01 Aug 2023 12:34:15 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 54b1dd78-c67f-45ae-50df-7202259b978e + - 8807f58e-afc6-40e6-5082-99837ae321fd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 439.6842ms + duration: 191.584928ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml index 84f46f7a..bb0e2564 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 81b3e1fc-1f6e-3ea9-ea26-ce826789e3ab + - 9affcbd8-9019-c832-956e-c3a4099d8dde X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:40 GMT + - Tue, 01 Aug 2023 12:34:15 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 36fab7ac-c1c0-4eba-4bc5-1837d6393358 + - 5979f65c-d4bb-41d6-7d9e-90a7d1317e75 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 475.1714ms + duration: 254.7222ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0d9776bf-4fa5-ce6f-4471-e9bbdcade6e0 + - 195c09e8-7981-97d7-bd77-8b203abffde2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 07:12:40 GMT + - Tue, 01 Aug 2023 12:34:15 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 82bd2e3a-904a-4a5a-4b55-ec98fed40f6a + - ba3812f8-7ba5-4f80-4b4e-90496e93f4fc X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 289.6758ms + duration: 196.789015ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0d9776bf-4fa5-ce6f-4471-e9bbdcade6e0 + - 195c09e8-7981-97d7-bd77-8b203abffde2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"}]' + body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:41 GMT + - Tue, 01 Aug 2023 12:34:16 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7b2a15fc-5de9-4d11-530d-2e8a1ce4ca50 + - 04cb6bc4-ddbe-42f2-4b56-40a442734c12 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 242.672ms + duration: 145.866134ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4635b563-e74b-b864-1ea8-2711eb444628 + - 74440085-06ac-8d12-8b08-ccddef48bc80 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:41 GMT + - Tue, 01 Aug 2023 12:34:16 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9859b1be-ec21-4a53-4323-21519446862f + - 597e7011-6362-4c6f-53ad-c1bb05d2c916 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 399.269ms + duration: 253.703724ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bf751cda-fad7-38f3-e005-7bc24df2b064 + - 3be66a1a-0641-1a56-f276-ad104f8f2cfe X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 07:12:41 GMT + - Tue, 01 Aug 2023 12:34:16 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4988de66-e205-49af-4653-987ba6970f0a + - 65d64778-264a-48ed-47fe-aca432f6a1ba X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 181.6361ms + duration: 170.479486ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bf751cda-fad7-38f3-e005-7bc24df2b064 + - 3be66a1a-0641-1a56-f276-ad104f8f2cfe X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"}]' + body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:41 GMT + - Tue, 01 Aug 2023 12:34:16 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ad27cc6b-131e-4417-4bc7-d824e8039403 + - 3997c0cf-656e-43fd-65ef-4b6f3ebecb02 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 152.1199ms + duration: 146.549272ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8a37be65-6673-9697-e9d0-75751a68e6a4 + - 8a3c818c-8564-39b6-212b-2f1fb0f2ca78 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:42 GMT + - Tue, 01 Aug 2023 12:34:17 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - df5deba5-c43b-44d4-5b6c-01ba99c0fa13 + - e3057b3f-02cf-4000-43aa-74a1629bc717 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.0574ms + duration: 274.982943ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 77d1dde4-e48d-5e38-070b-e4fa0cf48f1b + - 3a443db9-9001-8f5a-2ad4-a05c1efcec6a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 07:12:42 GMT + - Tue, 01 Aug 2023 12:34:17 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1feb3fd6-cf73-478a-79ee-9191e1bb75a0 + - fe66133a-7eeb-4d99-4430-851242c896ec X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 210.0637ms + duration: 167.245621ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 77d1dde4-e48d-5e38-070b-e4fa0cf48f1b + - 3a443db9-9001-8f5a-2ad4-a05c1efcec6a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"}]' + body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:42 GMT + - Tue, 01 Aug 2023 12:34:17 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bfa70488-e6e2-4223-6e20-4728d0a6543d + - 8a007705-71bb-40e0-7e9e-b28893c11cf5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 217.8561ms + duration: 197.844089ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 30edb005-6a30-cd5c-85c1-4dba0f3a99d8 + - 3a27d9a6-d45b-fe0c-1181-f2f8b1ef7180 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:43 GMT + - Tue, 01 Aug 2023 12:34:18 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b022bb80-6475-449a-6821-1435e6c2ba74 + - e356cd6b-65b1-44ee-696f-0a64a09f5790 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.017ms + duration: 211.463813ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 466c3a52-bb64-54ce-31b4-2fe97994c1f7 + - 16a03621-6302-cce8-fbe0-92a22e12a8a6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 07:12:43 GMT + - Tue, 01 Aug 2023 12:34:18 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f35adc62-1772-4cc8-51d8-4ae94736c817 + - 72605655-96bf-4265-568f-030cc4a9f12a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 218.6808ms + duration: 243.411073ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 466c3a52-bb64-54ce-31b4-2fe97994c1f7 + - 16a03621-6302-cce8-fbe0-92a22e12a8a6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"}]' + body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:43 GMT + - Tue, 01 Aug 2023 12:34:18 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d2d024eb-f20a-4d6d-7fc3-6aff39e61029 + - d71e779c-8594-4eef-4510-3502e2366bc4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 158.4317ms + duration: 146.393346ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1224db5c-9ee0-3c48-a81a-b8b91cf80c2a + - a8303038-65e3-3166-c364-b4495f1d884a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:44 GMT + - Tue, 01 Aug 2023 12:34:18 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 060c4b2a-9f4e-436d-4ef3-ae341d4f2bff + - 7c7e909e-c438-43cf-698c-63ade1e09e79 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 363.7308ms + duration: 272.746721ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7ec2e712-a2b8-7954-e4d0-a84d902151fa + - 3c6ee0a6-62ce-a8a1-9fba-e4dba7cda5e4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 07:12:44 GMT + - Tue, 01 Aug 2023 12:34:19 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d1ad2ae0-8d7c-47ef-544e-d0c82e120a09 + - 52298a4d-1416-4128-7bbd-22af09153e3b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 197.4608ms + duration: 240.002006ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/offering?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7ec2e712-a2b8-7954-e4d0-a84d902151fa + - 3c6ee0a6-62ce-a8a1-9fba-e4dba7cda5e4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-07-07T05:48:45.493529Z"}]' + body: '[{"id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","ready":true,"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","bindable":true,"instances_retrievable":false,"bindings_retrievable":false,"plan_updateable":false,"allow_context_updates":false,"tags":["html5appsrepo","html5-apps-repo-rt","html5-apps-rt","html5-apps-repo-dt","html5-apps-dt"],"metadata":{"displayName":"HTML5 Application Repository","documentationUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html","longDescription":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","supportUrl":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html","imageUrl":"data:image/svg+xml;base64,PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","serviceInventoryId":"SERVICE-234"},"broker_id":"e5e75ccc-7963-42cc-b4d1-1314f5ddc6f3","catalog_id":"14f042c6-0175-43ef-9a5d-33bd10890e2a","catalog_name":"html5-apps-repo","created_at":"2020-08-18T16:05:37.292133Z","updated_at":"2023-08-01T11:50:18.789753Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:44 GMT + - Tue, 01 Aug 2023 12:34:19 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a21a6861-9b27-4a82-759f-948f823b66eb + - c257c357-d253-4600-5124-37561cdd2051 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 136.2216ms + duration: 184.590485ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d35600c2-0f28-de31-ae5e-734c178cb441 + - 77dfe3a0-88ee-7de7-853d-42feb99e7850 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 07:12:44 GMT + - Tue, 01 Aug 2023 12:34:19 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a912cdf1-6fd8-40cc-6c71-6f6f58179cb0 + - 0c8b178c-3574-43de-7352-5252582bacfc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.5909ms + duration: 326.65118ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml index 58bfd3c5..301a7313 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2b12c86f-f4a8-56c8-0508-7a416d2c0a90 + - 103153e3-b371-2ed0-9d43-ad652fef4ba2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:03 GMT + - Tue, 01 Aug 2023 07:34:13 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0330fd07-bdf5-4adf-41c8-2e8afe6d3f0f + - 4dd1af20-fe48-481d-7445-0a1e67cd6e5a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 763.5539ms + duration: 307.851061ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 275ad3dd-c1f6-7d38-512d-a4f1bbae4df0 + - e4db1458-f379-da39-c1a7-d568749964ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:03 GMT + - Tue, 01 Aug 2023 07:34:13 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8cba70c1-c602-4a9a-4afc-882ac414102e + - ac46339d-6078-4313-5f21-2fab8b68a9d7 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 365.3486ms + duration: 231.433639ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 275ad3dd-c1f6-7d38-512d-a4f1bbae4df0 + - e4db1458-f379-da39-c1a7-d568749964ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:04 GMT + - Tue, 01 Aug 2023 07:34:13 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 06356c4e-fdc8-481d-43cc-2208856666ef + - 45540f93-b480-43e3-4622-caa1eb367d63 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 310.4816ms + duration: 116.395327ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - baf137d2-7cff-8327-5ebf-a25b8ae12378 + - 2f8d3338-4f3a-b9eb-8a22-4e8a68edf72f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:04 GMT + - Tue, 01 Aug 2023 07:34:13 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9550d958-a279-4af9-488a-7d843bed4abd + - f3a1f70e-63f5-4712-79b6-3b54aec6da67 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 516.1574ms + duration: 300.077234ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31f75b07-6f3b-3bc0-030c-462a4cd4547f + - ca8ffa53-ac2a-03eb-2789-fc4d74097074 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:05 GMT + - Tue, 01 Aug 2023 07:34:14 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8e521892-48ac-4c01-6e90-bfb4e56a9412 + - 92c86ef6-3b02-4d57-67c1-c7ad02c62418 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 212.0607ms + duration: 293.155208ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31f75b07-6f3b-3bc0-030c-462a4cd4547f + - ca8ffa53-ac2a-03eb-2789-fc4d74097074 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:05 GMT + - Tue, 01 Aug 2023 07:34:14 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5bcdfd83-907d-4dce-6264-c9ddd07b99d7 + - d5d7f732-8267-4dd4-4da9-b358a305733b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 133.9704ms + duration: 113.54276ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d5e4767a-233f-8092-c658-6b8577f82311 + - bf6c849d-b7cb-e08e-eb37-96239cb0f369 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:05 GMT + - Tue, 01 Aug 2023 07:34:14 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1ef5d1d6-e48e-483d-7239-c89503dd58f8 + - 7267e29f-5de1-4a06-5bbf-092c113990bc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 451.4346ms + duration: 290.409482ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a2122a3f-d986-be5e-255a-c4c3aa080cfd + - 3008a689-b150-5114-3868-2a14193a6996 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:06 GMT + - Tue, 01 Aug 2023 07:34:15 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b929b4b9-d569-4517-68dc-2a36a6e1eb8c + - 94e65c5a-ab03-4de8-5da9-d3f48af4d323 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 200.1627ms + duration: 168.355134ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a2122a3f-d986-be5e-255a-c4c3aa080cfd + - 3008a689-b150-5114-3868-2a14193a6996 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:06 GMT + - Tue, 01 Aug 2023 07:34:15 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dc64d97b-7990-46cc-5bed-f8fad85812fd + - 5e371e17-2a58-4cc9-49bb-002487f08ac6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 179.9083ms + duration: 113.349177ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b6994602-a3c9-3580-dcec-fc80259c82e1 + - 87126700-8375-d2d3-a08e-34d9d999a111 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:06 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 95365a31-fe27-4e60-5b81-7ec64f238ff6 + - e37ee2d4-5996-4123-695d-b3ced1f3a9b3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 426.5754ms + duration: 567.536588ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e858fa36-c4e8-5d7d-6945-6f6e87a7726f + - 498aca13-478e-f482-1314-64268c816191 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:06 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 12c68565-a4dc-47e4-67fb-9c86185ef9f7 + - e90c7956-a088-4e19-759a-1a9076b1c959 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 219.3037ms + duration: 137.593191ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e858fa36-c4e8-5d7d-6945-6f6e87a7726f + - 498aca13-478e-f482-1314-64268c816191 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:07 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8376506-e7cd-4c0a-5db2-102125a7e0ae + - 7b8b9861-30ce-40d1-754b-4a4839e61019 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 202.2042ms + duration: 118.919963ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 554e778c-2bdc-ea8a-7f86-bf15245613a0 + - 0e7a0698-1178-a8a4-4eea-9da538728aa3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:07 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f154366e-47a3-4ddc-4c51-043492028f78 + - e22bf995-be9e-440d-4052-21a9cedd11f0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 419.1251ms + duration: 289.811712ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da0273f1-fd5c-90e0-3653-e4a27da990c8 + - 8c1ca1aa-36a5-c873-7497-e30420a4949e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:07 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c7fadb98-c5ea-4eca-570d-05631e4cc88a + - e698e5f3-6b8b-4492-5fd7-217a7ed5f83e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.0729ms + duration: 142.665055ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da0273f1-fd5c-90e0-3653-e4a27da990c8 + - 8c1ca1aa-36a5-c873-7497-e30420a4949e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:07 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9159898f-97bf-40ec-780e-8e72de1296a8 + - 1cff80f9-0bd3-44f3-77b3-1082b3a39e5a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 169.171ms + duration: 114.904575ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33dc277f-7518-af20-3dce-d78c70d081a3 + - 9ef88151-1b78-0e05-d29b-ee5a362ae571 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:08 GMT + - Tue, 01 Aug 2023 07:34:17 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7898972d-3b91-4c40-5ddf-277f53c068cc + - f6f1beb4-fa94-4702-7037-329370b1382d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 439.6722ms + duration: 279.945986ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml index 98a55728..1a598e14 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4119f3d8-f5b1-6c56-9a39-20978b6878e4 + - 7b4eb18f-c839-f55b-8287-c147d2b46a8d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:09 GMT + - Tue, 01 Aug 2023 07:34:17 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f122ca9b-1278-404b-7a2b-d651d8e05429 + - 372a973d-06d9-4244-723d-5fe70c565db6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 402.3801ms + duration: 228.824447ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 59e411dd-eeb3-7e28-8b11-ae8913aea66c + - 410a133b-75a0-e6d6-9719-5f61fd131b95 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:09 GMT + - Tue, 01 Aug 2023 07:34:18 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d89337fa-21a9-42ca-5cb1-ce12589b0d8f + - 777c391b-675d-46da-7049-3da535d12079 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 215.5667ms + duration: 250.894792ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 59e411dd-eeb3-7e28-8b11-ae8913aea66c + - 410a133b-75a0-e6d6-9719-5f61fd131b95 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:09 GMT + - Tue, 01 Aug 2023 07:34:18 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2230b1d1-f9a4-4e42-6edf-ba722762f1be + - 2a4143ae-75a8-4d9d-501c-0edd8a2a4339 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 271.6293ms + duration: 183.872219ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e5cdfa5-439f-c5b3-6eb0-462b3fdf5cac + - 0bec8f37-eea1-b91a-79dd-ad43736822bd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:10 GMT + - Tue, 01 Aug 2023 07:34:18 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1fa18371-f1d8-46ee-47b4-61c7152a4a77 + - 028b1c5a-b8f0-4c87-4f90-bc8b338aae90 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 428.0739ms + duration: 328.585764ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9438d814-6087-cdd2-2f43-0462639b6f7c + - c5097516-d916-9ba2-3bdb-b605b406d917 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:10 GMT + - Tue, 01 Aug 2023 07:34:18 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 14b434da-be8e-4a4a-50c8-9260a7987b41 + - 8ff78bac-2166-4c34-7fa6-2570e1fa0c27 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 239.1367ms + duration: 135.312898ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9438d814-6087-cdd2-2f43-0462639b6f7c + - c5097516-d916-9ba2-3bdb-b605b406d917 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:10 GMT + - Tue, 01 Aug 2023 07:34:19 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 56872dea-63b2-4f70-7dc2-efec53f936c6 + - d47d92f8-4dce-4b83-703d-4f46d6889b7b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 235.0677ms + duration: 190.189363ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2a594bb7-c8ee-2702-c6cf-f5f6e3a9f37f + - 2bbcbf0e-ee26-9de9-6220-e1658b1b320c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:11 GMT + - Tue, 01 Aug 2023 07:34:19 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ffc5abe4-f051-41a7-464b-554801dca8ce + - 7d275c20-5456-4d27-70a2-759afd57679b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.8751ms + duration: 177.82941ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fff6d120-5898-554a-513f-57523f490774 + - 42f720f3-05f1-a818-bcf7-6d295813cca8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:11 GMT + - Tue, 01 Aug 2023 07:34:19 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - eeaa2cdf-fc3b-4ed3-7fa6-eb7a85c85129 + - b9944369-574c-40d1-78fd-e4c48ed8ba0a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 190.0493ms + duration: 184.327514ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fff6d120-5898-554a-513f-57523f490774 + - 42f720f3-05f1-a818-bcf7-6d295813cca8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:11 GMT + - Tue, 01 Aug 2023 07:34:19 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e36372d3-9441-4132-5bf2-aa759fdeab44 + - a4950025-bcf5-4fee-4c16-cfdb8028ac05 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 259.8928ms + duration: 175.412758ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e8f0ae2-3a0e-6d1e-04aa-5725a54d6a81 + - 67084928-519b-637b-a91f-149d384c30ec X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:12 GMT + - Tue, 01 Aug 2023 07:34:20 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3c96c138-1438-477a-6c46-2fee4f6d0271 + - 08104566-4828-4c65-51a0-ebc3f33b0426 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 419.2095ms + duration: 217.274313ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - af89254b-cd7f-d549-f86f-6cb1d2a43212 + - 2b94f017-018b-1523-063d-9dda9411ec2d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:12 GMT + - Tue, 01 Aug 2023 07:34:20 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4c23065b-0274-4994-6eff-fad3f768d67d + - ae7d9de7-c001-439e-752a-aefe16fa5728 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 191.0442ms + duration: 341.934339ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - af89254b-cd7f-d549-f86f-6cb1d2a43212 + - 2b94f017-018b-1523-063d-9dda9411ec2d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:12 GMT + - Tue, 01 Aug 2023 07:34:20 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 46dadc64-6101-4f56-7a60-6653fa2c2894 + - 671492b5-5eb8-43a2-5ba1-0c7dd8a67ce7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 262.2188ms + duration: 200.153303ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2f8f22a4-acd3-ed5c-a24b-e9629016b1ca + - 708f7b0d-d69b-4ca7-24c8-068d7b12666f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:12 GMT + - Tue, 01 Aug 2023 07:34:21 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2d0d1f9a-3f65-4543-79ed-9e527e957d86 + - 40e6cb79-5880-42a0-7fd2-3fa5434400ee X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 378.1586ms + duration: 395.304546ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4f42b4bc-69a9-9ac7-a3c7-e3b4c6deff59 + - dc076166-2afd-6241-03c4-26ed5dd3816d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 06 Jul 2023 13:01:13 GMT + - Tue, 01 Aug 2023 07:34:21 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 51946687-e59a-4ab6-5296-16dac8bfa376 + - c1f4fa83-1d0a-45f4-60c1-e65a7cea9501 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 172.429ms + duration: 161.150548ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?get User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4f42b4bc-69a9-9ac7-a3c7-e3b4c6deff59 + - dc076166-2afd-6241-03c4-26ed5dd3816d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-06T12:49:48.576905Z","labels":"commercial_name = lite"}' + body: '{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","ready":true,"name":"lite","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","free":true,"metadata":{"supportsInstanceSharing":true,"displayName":"lite","bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"]},"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","created_at":"2020-08-10T14:58:38.756598Z","updated_at":"2023-07-31T11:31:34.873234Z","labels":"commercial_name = lite"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:13 GMT + - Tue, 01 Aug 2023 07:34:21 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 330ce7d3-00b7-4e5e-5ed0-9188bd70b204 + - 9f52dfca-d60b-4325-652a-da29d9adcb25 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 214.827ms + duration: 180.329587ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 277c3a08-e18f-6b22-c78f-49271ef6a611 + - 8499e7d0-bbc8-de46-1b47-0d97ea18a709 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 06 Jul 2023 13:01:13 GMT + - Tue, 01 Aug 2023 07:34:22 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6b37ecb5-850d-4df8-7146-a01668bebb0d + - d7a4cf00-6293-413a-4c5d-6d3d7b7a19f6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.7327ms + duration: 218.64776ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml b/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml index 2ec87b67..d029f542 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f81af12d-026f-583f-a158-2fb7be0072fd + - 545358ca-837b-c448-162f-9c0885187ce8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:25 GMT + - Tue, 01 Aug 2023 12:26:37 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7e50c3b4-fb9c-454b-57f1-6a51869dde61 + - 0a0d89c6-3cb5-4d03-667b-a46c41624a5b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 855.1705ms + duration: 567.189498ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 66ed11b6-cd23-8974-0973-021441cdba2b + - 83370e7e-8f1f-361c-6fee-4b2615b4ce8a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:14:25 GMT + - Tue, 01 Aug 2023 12:26:37 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d7ccd383-0dea-436e-73b8-0043736751c7 + - da45ca82-a365-4b1a-74b9-a14cb0648a42 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 290.2205ms + duration: 339.898919ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 66ed11b6-cd23-8974-0973-021441cdba2b + - 83370e7e-8f1f-361c-6fee-4b2615b4ce8a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.591774Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.600502Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.610738Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.342752Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.351868Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.244672Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.253582Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-07-07T05:43:23.371512Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.520467Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.76939Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.781227Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.574464Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.505441Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.514495Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-07-07T05:43:27.897834Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-07-07T05:43:28.224075Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.170181Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.529674Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.62725Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.182418Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-07-07T05:43:47.976125Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.54741Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.564714Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-07-07T05:43:53.340411Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-07-07T05:44:11.525784Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-07-07T05:44:13.134836Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.556073Z"}]' + body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.767296Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.772213Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.779705Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.046202Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.054212Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.182555Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.196143Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-08-01T11:43:25.590252Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.745017Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.372574Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.388081Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.843793Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.804651Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.816388Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-08-01T11:43:30.204449Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-08-01T11:43:30.549987Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.531587Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.749653Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.789069Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.549846Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-08-01T11:43:53.010451Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.758598Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.767363Z"},{"catalog_id":"960cae74-6a24-4c51-a141-0be2fdd6aaa9","catalog_name":"default","created_at":"2022-02-11T16:13:45.641778Z","data_center":"","description":"Default Plan","free":true,"id":"93481392-dadf-4520-ada2-b0852127a1e5","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","service_offering_name":"ibanservice","updated_at":"2023-07-17T09:01:28.542797Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-08-01T11:44:00.15888Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-08-01T11:44:28.175232Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-08-01T11:44:31.657217Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.763049Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:26 GMT + - Tue, 01 Aug 2023 12:26:37 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a4d24aef-c9a4-4d50-64d0-74fb2bc72188 + - e6c243df-0993-4271-608a-4af7698fc542 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 852.7809ms + duration: 355.352355ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed866af3-3ae4-ee0c-904e-43d6943c6394 + - e6e1649c-2c82-f09e-ae73-78f14281a8de X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:27 GMT + - Tue, 01 Aug 2023 12:26:38 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2598d41f-ab65-42be-4a5c-231abf693da3 + - 73daba77-0b42-456c-4d27-e2430f97e6d8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 513.3776ms + duration: 458.992645ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bdc06c49-fea7-ec49-32e8-b7590341da0e + - 46d11afe-f550-58d6-4e42-d957a248e44c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:14:27 GMT + - Tue, 01 Aug 2023 12:26:38 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - bcf2daff-b075-4075-65b8-33a8205a5622 + - 1cf9a7b3-dccc-4d7f-7f8e-135fd9af6a0f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 256.9092ms + duration: 215.742823ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bdc06c49-fea7-ec49-32e8-b7590341da0e + - 46d11afe-f550-58d6-4e42-d957a248e44c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.591774Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.600502Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.610738Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.342752Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.351868Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.244672Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.253582Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-07-07T05:43:23.371512Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.520467Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.76939Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.781227Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.574464Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.505441Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.514495Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-07-07T05:43:27.897834Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-07-07T05:43:28.224075Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.170181Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.529674Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.62725Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.182418Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-07-07T05:43:47.976125Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.54741Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.564714Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-07-07T05:43:53.340411Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-07-07T05:44:11.525784Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-07-07T05:44:13.134836Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.556073Z"}]' + body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.767296Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.772213Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.779705Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.046202Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.054212Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.182555Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.196143Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-08-01T11:43:25.590252Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.745017Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.372574Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.388081Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.843793Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.804651Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.816388Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-08-01T11:43:30.204449Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-08-01T11:43:30.549987Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.531587Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.749653Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.789069Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.549846Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-08-01T11:43:53.010451Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.758598Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.767363Z"},{"catalog_id":"960cae74-6a24-4c51-a141-0be2fdd6aaa9","catalog_name":"default","created_at":"2022-02-11T16:13:45.641778Z","data_center":"","description":"Default Plan","free":true,"id":"93481392-dadf-4520-ada2-b0852127a1e5","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","service_offering_name":"ibanservice","updated_at":"2023-07-17T09:01:28.542797Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-08-01T11:44:00.15888Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-08-01T11:44:28.175232Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-08-01T11:44:31.657217Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.763049Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:28 GMT + - Tue, 01 Aug 2023 12:26:38 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7030725d-e339-42f3-5a6a-4d35ce03bf5c + - fb1fff78-93dd-4ffe-7c02-d77464861b81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.0692ms + duration: 210.142685ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cf6f25c2-a021-a63d-930f-460375194d92 + - e612c140-4211-83c9-803a-ba7e4a76a18e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:28 GMT + - Tue, 01 Aug 2023 12:26:39 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 80ef7388-4886-4e0b-4bed-7cb719e30023 + - e181a685-6e30-49f7-7e11-60677a783941 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 431.9499ms + duration: 333.026597ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3dd42251-62e9-1539-2ca9-e54bf3347e46 + - d7540fa3-9f44-feb9-f0c4-f2627fe83a9f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:14:28 GMT + - Tue, 01 Aug 2023 12:26:39 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 674f3aa3-ea2e-41e6-465d-f56676eb08cd + - c51aa3c3-abe1-48ce-7441-df1ad9f2c5d2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 204.625ms + duration: 280.312636ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3dd42251-62e9-1539-2ca9-e54bf3347e46 + - d7540fa3-9f44-feb9-f0c4-f2627fe83a9f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.591774Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.600502Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.610738Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.342752Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.351868Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.244672Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.253582Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-07-07T05:43:23.371512Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.520467Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.76939Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.781227Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.574464Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.505441Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.514495Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-07-07T05:43:27.897834Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-07-07T05:43:28.224075Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.170181Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.529674Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.62725Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.182418Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-07-07T05:43:47.976125Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.54741Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.564714Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-07-07T05:43:53.340411Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-07-07T05:44:11.525784Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-07-07T05:44:13.134836Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.556073Z"}]' + body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.767296Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.772213Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.779705Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.046202Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.054212Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.182555Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.196143Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-08-01T11:43:25.590252Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.745017Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.372574Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.388081Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.843793Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.804651Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.816388Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-08-01T11:43:30.204449Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-08-01T11:43:30.549987Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.531587Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.749653Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.789069Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.549846Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-08-01T11:43:53.010451Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.758598Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.767363Z"},{"catalog_id":"960cae74-6a24-4c51-a141-0be2fdd6aaa9","catalog_name":"default","created_at":"2022-02-11T16:13:45.641778Z","data_center":"","description":"Default Plan","free":true,"id":"93481392-dadf-4520-ada2-b0852127a1e5","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","service_offering_name":"ibanservice","updated_at":"2023-07-17T09:01:28.542797Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-08-01T11:44:00.15888Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-08-01T11:44:28.175232Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-08-01T11:44:31.657217Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.763049Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:29 GMT + - Tue, 01 Aug 2023 12:26:40 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7611ad6b-a2ab-4cea-6e82-1e5faf676054 + - b8fe2dcf-1fdb-4173-7cf1-b281ad8a9bf0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 200.5419ms + duration: 278.715532ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 513fa82a-8cb4-0d63-6a3e-95293cc91d32 + - a518f3ed-dfe7-53bf-b55d-6546e3ee1260 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:29 GMT + - Tue, 01 Aug 2023 12:26:40 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dca8d46f-0e63-46ce-74a9-72f0bf845f68 + - 24533f74-0220-425e-6683-ce5d29f34c0e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 430.6492ms + duration: 263.446937ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 358011f1-8fe9-7c47-7f69-32e9226a39f2 + - 839aa927-9bd2-16dd-40ce-fc04dc85b125 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:14:29 GMT + - Tue, 01 Aug 2023 12:26:40 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f76f0fe9-d969-4112-61d0-11f9c7a4c0ef + - 99613aa8-6df6-4ad5-70fb-e25404a0036a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 210.3732ms + duration: 229.832611ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 358011f1-8fe9-7c47-7f69-32e9226a39f2 + - 839aa927-9bd2-16dd-40ce-fc04dc85b125 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.591774Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.600502Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.610738Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.342752Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.351868Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.244672Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.253582Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-07-07T05:43:23.371512Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.520467Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.76939Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.781227Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.574464Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.505441Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.514495Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-07-07T05:43:27.897834Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-07-07T05:43:28.224075Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.170181Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.529674Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.62725Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.182418Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-07-07T05:43:47.976125Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.54741Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.564714Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-07-07T05:43:53.340411Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-07-07T05:44:11.525784Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-07-07T05:44:13.134836Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.556073Z"}]' + body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.767296Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.772213Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.779705Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.046202Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.054212Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.182555Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.196143Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-08-01T11:43:25.590252Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.745017Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.372574Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.388081Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.843793Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.804651Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.816388Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-08-01T11:43:30.204449Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-08-01T11:43:30.549987Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.531587Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.749653Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.789069Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.549846Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-08-01T11:43:53.010451Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.758598Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.767363Z"},{"catalog_id":"960cae74-6a24-4c51-a141-0be2fdd6aaa9","catalog_name":"default","created_at":"2022-02-11T16:13:45.641778Z","data_center":"","description":"Default Plan","free":true,"id":"93481392-dadf-4520-ada2-b0852127a1e5","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","service_offering_name":"ibanservice","updated_at":"2023-07-17T09:01:28.542797Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-08-01T11:44:00.15888Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-08-01T11:44:28.175232Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-08-01T11:44:31.657217Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.763049Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:30 GMT + - Tue, 01 Aug 2023 12:26:41 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d4dcd6cf-de6d-4402-7b39-958a820d39a2 + - 699bf3fa-0256-49b8-6852-a28e201519ba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 189.85ms + duration: 220.887626ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1dbff88c-298c-0909-b5bd-56c4d99f5992 + - edac9197-e20d-81ab-e9ef-3122a5a2dd9b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:30 GMT + - Tue, 01 Aug 2023 12:26:41 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 077d22b2-8321-4593-5566-74f5420860bf + - 0199e746-ed24-4d37-5716-72926e104e6e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 482.6193ms + duration: 271.394268ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f9cff07-2f8f-f88a-69c9-d4faf8cd1914 + - be76701f-009a-72c0-e138-facea665da6a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:14:30 GMT + - Tue, 01 Aug 2023 12:26:41 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 40ee0a13-0721-464b-7270-8494c679c779 + - 43cc6a86-6464-48e6-57e0-efc768bef5bf X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 228.6765ms + duration: 210.945132ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f9cff07-2f8f-f88a-69c9-d4faf8cd1914 + - be76701f-009a-72c0-e138-facea665da6a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.591774Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.600502Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.610738Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.342752Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-07-07T05:43:18.351868Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.244672Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-07-07T05:43:19.253582Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-07-07T05:43:23.371512Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.520467Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.76939Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-07-07T05:56:17.781227Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.574464Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.505441Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-07-07T05:48:45.514495Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-07-07T05:43:27.897834Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-07-07T05:43:28.224075Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.170181Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.529674Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-07-07T05:43:15.62725Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.182418Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-07-07T05:43:47.976125Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.54741Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.564714Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-07-07T05:43:53.340411Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-07-07T05:44:11.525784Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-07-07T05:44:13.134836Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-07-07T05:43:24.556073Z"}]' + body: '[{"catalog_id":"f7909c1d-deb9-4adc-b285-c5bb192e8fdb","catalog_name":"subaccount-admin","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":true,"id":"4a690390-0319-47fe-ab0b-cdda57ca743f","labels":"commercial_name = subaccount-admin","name":"subaccount-admin","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.767296Z"},{"catalog_id":"209d9bed-8c96-4dbc-a9c2-fb340d40a859","catalog_name":"subaccount-audit","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":true,"id":"7370df1d-75a1-48a7-9883-ac53b5279fc4","labels":"commercial_name = subaccount-audit","name":"subaccount-audit","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.772213Z"},{"catalog_id":"242d6244-2bc9-4913-933f-f563266c3fa2","catalog_name":"container","created_at":"2020-08-09T11:31:20.082571Z","data_center":"","description":"Allows management of service instances and bindings in a reduced scope. Instances created in a container are not visible when using credentials of other container instances.","free":true,"id":"e38a6661-3b04-4de8-ae7a-56861c53f2d0","labels":"commercial_name = container","name":"container","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.779705Z"},{"catalog_id":"g82c70b5-ba96-44db-a4e6-2b608d3b6794","catalog_name":"resources","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will be used by brokers for retrieving resources from resource providers.","free":true,"id":"8a21a612-459b-461d-ba90-c7e1c75f64f3","labels":"commercial_name = resources","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"resources","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.046202Z"},{"catalog_id":"e7227f10-be41-436b-935a-e58da4122567","catalog_name":"service","created_at":"2020-08-10T07:34:28.809068Z","data_center":"","description":"This plan binding will register application as LPS client for consuming lps apis","free":true,"id":"e8988e63-adf6-4708-8780-f0637e31c098","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"service","ready":true,"service_offering_id":"b3f88a98-4076-4d8b-b519-1c5222c9b178","service_offering_name":"lps-service","updated_at":"2023-08-01T11:43:20.054212Z"},{"bindable":true,"catalog_id":"saasApplication","catalog_name":"application","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","free":true,"id":"c5d7a86e-176b-4ee8-8286-7910970f7dc3","labels":"commercial_name = application","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.182555Z"},{"bindable":true,"catalog_id":"saasService","catalog_name":"service","created_at":"2020-08-10T07:35:37.447784Z","data_center":"","description":"Service plan for SAP internal service owners to develop reusable services and manage service dependencies.","free":true,"id":"bcf1872b-1091-4dcb-a6f4-ded7112ca448","labels":"commercial_name = service","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"],"supportsInstanceSharing":true},"name":"service","ready":true,"service_offering_id":"a5387c0b-141b-4b66-bb14-9fdb032e6eaf","service_offering_name":"saas-registry","updated_at":"2023-08-01T11:43:21.196143Z"},{"catalog_id":"b3440416-15f9-11e7-bdac-02667c123456","catalog_name":"lite","created_at":"2020-08-10T14:58:38.756598Z","data_center":"","description":"Read and manage destination configurations (including related certificates) on account and service instance levels with auto-retrieving and caching of auth tokens","free":true,"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","labels":"commercial_name = lite","metadata":{"bullets":["Shared service resources for all applications","Limit of 1000 configurations (destinations + certificates)"],"displayName":"lite","supportsInstanceSharing":true},"name":"lite","ready":true,"service_offering_id":"8627a19b-c397-4b1a-b297-6281bd46d8c3","service_offering_name":"destination","updated_at":"2023-08-01T11:43:25.590252Z"},{"catalog_id":"production","catalog_name":"default","created_at":"2020-08-12T13:15:46.933069Z","data_center":"","description":"Enables the end-to-end story of reporting usage information for productive commercial purposes","free":true,"id":"cf8c5150-d420-449f-b27b-35f1d4d5c1d3","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.745017Z"},{"bindable":true,"catalog_id":"HWEgt9/jJGFjzT8j+/x9pGivrAuKbUMUK8PgWEx3cLY=","catalog_name":"broker","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Broker plan to be used by business reuse services / service brokers","free":true,"id":"a593dcd5-1bb0-4d42-8007-b237fb374c3a","labels":"commercial_name = broker","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, user token)","One OAuth client for the reuse service itself + one per instance of the reuse service"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"broker","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.372574Z"},{"bindable":true,"catalog_id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","catalog_name":"application","created_at":"2020-08-13T15:09:38.643826Z","data_center":"","description":"Application plan to be used for business applications","free":true,"id":"de0d54b6-65bc-4817-a075-b038f7c150e4","labels":"commercial_name = application","metadata":{"bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"sibling_resolution":{"enabled":true,"name_paths":["scopes.#.granted-apps","scopes.#.grant-as-authority-to-apps","foreign-scope-references","authorities","role-collections.#.role-template-references"],"resolution_property":"siblingIds","value_regexp":"\\$XSSERVICENAME\\((.*)\\)"},"supportedMaxOSBVersion":"2.14","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","sapcp","kubernetes"],"supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","service_offering_name":"xsuaa","updated_at":"2023-08-01T11:49:36.388081Z"},{"catalog_id":"ebb3b29e-bbf9-4900-b926-2f8e9c9a3347","catalog_name":"lite","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service development plan (for non-productive usage)","free":true,"id":"fb6f6ffb-a4d8-443d-8731-1120a28df09d","labels":"commercial_name = lite","metadata":{"bullets":["Plan with basic functionality and relaxed security, excellent for development and try-out purposes"],"displayName":"lite","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"lite","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.843793Z"},{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"7ccdcda7-e376-46ef-8181-ca6d8dc13240","catalog_name":"app-host","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to deploy HTML5 applications to the repository.","free":true,"id":"0ac1764a-c2ee-4675-9bb7-7955f5af86dc","labels":"commercial_name = app-host","name":"app-host","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.804651Z"},{"catalog_id":"394c61ff-2306-4ce2-ae18-85b3cb28897c","catalog_name":"app-runtime","created_at":"2020-08-18T16:05:37.292133Z","data_center":"","description":"Use this service plan to consume HTML5 applications stored in the repository.","free":true,"id":"12419745-53d8-4b23-877f-04fdcf83943b","labels":"commercial_name = app-runtime","metadata":{"metadata":{}},"name":"app-runtime","ready":true,"service_offering_id":"23f7803c-57e2-419e-95c3-ea1c86ed2c68","service_offering_name":"html5-apps-repo","updated_at":"2023-08-01T11:50:18.816388Z"},{"catalog_id":"e95e800c-f129-474f-b08e-fbfbe624abfd-3","catalog_name":"default","created_at":"2020-09-04T14:00:21.635804Z","data_center":"","description":"Default plan for Auditlog API","free":true,"id":"02fed361-89c1-4560-82c3-0deaf93ac75b","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"0091024c-1648-4716-bd17-604eabd7f480","service_offering_name":"auditlog-management","updated_at":"2023-08-01T11:43:30.204449Z"},{"catalog_id":"5b9399da-3c99-11e8-b467-oiu5f89f716c-uaa","catalog_name":"default","created_at":"2020-09-04T15:54:06.210729Z","data_center":"","description":"[DEPRECATED] Default plan for Auditlog API","free":true,"id":"c960aaff-79ef-4efd-bee9-61cd6b7f08c2","labels":"commercial_name = default","metadata":{"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"default","ready":true,"service_offering_id":"f2117f62-6119-4f06-b4f2-1c50c7248696","service_offering_name":"auditlog-api","updated_at":"2023-08-01T11:43:30.549987Z"},{"catalog_id":"12d1fec7-0a25-4379-bb65-48b4040e636e","catalog_name":"lite","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5","labels":"commercial_name = lite","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"lite","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"lite","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.531587Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"},{"catalog_id":"development","catalog_name":"development","created_at":"2020-12-23T21:33:37.174348Z","data_center":"","description":"Provides a sandbox-like environment that can be used as a playground, to ensure that your application code is ''wired'' successfully","free":true,"id":"ed255a53-4706-498d-9eaa-5b787379b523","labels":"commercial_name = development","name":"development","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.749653Z"},{"catalog_id":"136d6248-1bed-45e3-912a-f553406c3ab5","catalog_name":"service-operator-access","created_at":"2021-01-26T10:00:11.984992Z","data_center":"","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster","free":true,"id":"7546737c-fa9f-4456-9996-83a5074aa97c","labels":"commercial_name = service-operator-access","metadata":{"supportedPlatforms":["sapbtp"]},"name":"service-operator-access","ready":true,"service_offering_id":"7dc306e2-c1b5-46b3-8237-bcfbda56ba66","service_offering_name":"service-manager","updated_at":"2023-08-01T11:57:15.789069Z"},{"catalog_id":"89d05334-7b72-4949-987a-85d8b188000e","catalog_name":"free","created_at":"2021-03-17T19:49:16.196553Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":true,"id":"f0aac855-474d-4016-9529-61c062efbc7c","labels":"commercial_name = free","metadata":{"bullets":["25 registered actions","125 registered conditions","25 registered subscriptions","25 registered technical clients (service keys)","50 stored events of type ''matched events''","50 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute","5000 calls to Alert Notification configuration APIs per month","5000 calls to Alert Notification consumer APIs per month","5000 events ingested through Alert Notification producer APIs per month"],"displayName":"free","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"free","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.549846Z"},{"bindable":true,"catalog_id":"86af6685-7bae-40b8-b564-378284c8fcc9","catalog_name":"application","created_at":"2022-01-28T14:43:05.77551Z","data_center":"","description":"Register an application into your Identity Authentication tenant","free":true,"id":"d48d6595-d317-4108-965a-64f9ecdd26cb","labels":"commercial_name = application","metadata":{"sibling_resolution":{"enabled":true,"names_path":"consumed-services.#.service-instance-name","resolution_property":"siblingIds"},"supportedMaxOSBVersion":"2.15","supportedMinOSBVersion":"2.11","supportsInstanceSharing":true},"name":"application","ready":true,"service_offering_id":"2345e6ef-4dd9-4a41-a6dc-850925dd1215","service_offering_name":"identity","updated_at":"2023-08-01T11:43:53.010451Z"},{"catalog_id":"operations","catalog_name":"operations","created_at":"2022-01-26T17:55:40.904774Z","data_center":"","description":"internal plan for accessing operational metering APIs","free":true,"id":"dde9d346-6b55-4719-b356-d93c72b7439f","labels":"commercial_name = operations","name":"operations","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.758598Z"},{"catalog_id":"registrar","catalog_name":"registrar","created_at":"2022-02-09T11:28:33.593803Z","data_center":"","description":"Allows core-services to register in metering","free":true,"id":"5c1e09c0-f995-4e5a-8924-2a43fdd4402e","labels":"commercial_name = registrar","name":"registrar","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.767363Z"},{"catalog_id":"960cae74-6a24-4c51-a141-0be2fdd6aaa9","catalog_name":"default","created_at":"2022-02-11T16:13:45.641778Z","data_center":"","description":"Default Plan","free":true,"id":"93481392-dadf-4520-ada2-b0852127a1e5","labels":"commercial_name = default","name":"default","ready":true,"service_offering_id":"1bbf1f41-07c9-4028-af8b-0ce2fe182f61","service_offering_name":"ibanservice","updated_at":"2023-07-17T09:01:28.542797Z"},{"catalog_id":"e51562c8-4510-476d-894e-58c9965bca91","catalog_name":"small","created_at":"2022-02-24T14:22:07.536644Z","data_center":"","description":"A small instance of the service.","free":true,"id":"571e0627-691f-4c03-824f-6b9426c62a85","labels":"complementary = true","maintenance_info":{"version":"1.0.0"},"name":"small","ready":true,"service_offering_id":"b4842a3a-df33-4cec-a879-9b4b58691845","service_offering_name":"poc-broker-test","updated_at":"2022-02-24T14:22:07.648063Z"},{"bindable":true,"catalog_id":"9b538e77-6e15-4bc8-8d78-e3e92d5458f6","catalog_name":"receiver","created_at":"2022-03-10T06:17:08.046826Z","data_center":"","description":"Establish the connection to print clients","free":true,"id":"bdff5c3f-1582-47c6-91b8-1db9fedba09b","labels":"commercial_name = receiver","metadata":{"displayName":"receiver"},"name":"receiver","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"notifications":{"default":[{"destinationName":"","usage":""}],"items":{"additionalProperties":false,"properties":{"destinationName":{"default":"","pattern":"^[\\w-]{0,200}$","type":"string"},"usage":{"default":"","enum":["OMS","ISN","EDGE",""],"type":"string"}},"type":"object"},"maxItems":1,"minItems":0,"type":"array"}},"type":"object"}}}},"service_offering_id":"7bf5d92c-c1ed-4df4-b2dd-32ff5494bfd2","service_offering_name":"print","updated_at":"2023-08-01T11:44:00.15888Z"},{"catalog_id":"d6e4195f-534d-4ec2-a945-654665fbf38c","catalog_name":"sap-integration","created_at":"2022-12-16T08:30:57.81019Z","data_center":"","description":"Service plan for SAP-to-SAP integrations","free":true,"id":"4139f805-ee87-47bb-807d-86b8752b4b98","labels":"commercial_name = sap-integration","metadata":{"auto_subscription":{"app_name":"9985e588-9ec7-4bbe-8ea7-aeec70756b6b"},"supportedMaxOSBVersion":"2.16","supportedMinOSBVersion":"2.4","supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"sap-integration","ready":true,"schemas":{"service_instance":{"create":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"update":{"parameters":{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"application":{"description":"Name of the application you are connecting to MDI. Allowed values are: \"ariba\", \"c4c\", \"cdc\", \"commerceCloud\", \"concur\", \"fieldglass\", \"hrc\", \"mdg\", \"s4\", \"cpq\", sfsf\".","enum":["ariba","c4c","cdc","commerceCloud","concur","fieldglass","hrc","mdg","s4","cpq","sfsf"],"type":"string"},"businessSystemId":{"description":"Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned.","pattern":"^.{1,60}$","type":"string"},"enableTenantDeletion":{"default":false,"description":"Boolean flag to be set to true for confirming deletion of last service instance for the tenant.","type":"boolean"},"globalTenantId":{"description":"A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification.","pattern":"^[A-Za-z0-9-._~]{1,40}$","type":"string"},"logSys":{"description":"The logical system.","pattern":"^.{1,10}$","type":"string"},"writePermissions":{"description":"Array of entities the service instance has write permission for","items":{"properties":{"entityType":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}}},"service_offering_id":"b96b47de-0380-4aa3-95a2-da2f1e269a18","service_offering_name":"one-mds","updated_at":"2023-08-01T11:44:28.175232Z"},{"catalog_id":"45d8df72-56f8-45f5-a2f2-766baa355903","catalog_name":"oauth2","created_at":"2023-02-20T13:49:30.67577Z","data_center":"","description":"Plan to access Cloud Integration Automation Service API''s","free":true,"id":"331f19c4-d691-49f9-9d3b-9c11cdc90c43","labels":"commercial_name = oauth2","metadata":{"supportedPlatforms":["cloudfoundry","sapbtp"]},"name":"oauth2","ready":true,"service_offering_id":"79fa40f4-ae94-4397-b742-1a56d95e4897","service_offering_name":"cias","updated_at":"2023-08-01T11:44:31.657217Z"},{"catalog_id":"unified-metering","catalog_name":"unified-metering","created_at":"2023-06-07T10:02:45.718859Z","data_center":"","description":"Enable Unified-Metering Account capabilities for SAP BTP applications","free":true,"id":"082701ea-722c-4cb9-bfbd-1d8fb3a63464","labels":"commercial_name = unified-metering","name":"unified-metering","ready":true,"service_offering_id":"70da63ba-36c0-4f5b-8b64-63e02e501d44","service_offering_name":"metering-service","updated_at":"2023-08-01T11:43:26.763049Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:30 GMT + - Tue, 01 Aug 2023 12:26:41 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - aa6e2513-39d4-4212-7a64-bf22d6b8449c + - d377b91d-50f7-420c-6b79-867c8c634f99 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 159.407ms + duration: 149.473804ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0f9eb40c-1ed4-7a7f-9c08-f7af9eb17f3f + - a5545192-585d-9941-92e8-7b67dd55b8b4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:14:31 GMT + - Tue, 01 Aug 2023 12:26:42 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 908a517c-42e4-49b8-614c-644ff026dafe + - 9ee654f1-63d2-4f87-5911-3f43c832fcc8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.3234ms + duration: 279.063947ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml b/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml index e983001e..149036dd 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4eaab6f0-0217-7152-e97f-fc2f2263b976 + - e35a7c16-4894-67ad-1c77-f5dde2fec676 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:51 GMT + - Tue, 01 Aug 2023 12:26:42 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 42096a40-2288-4f69-6a74-8935b54fac87 + - b24688c9-852c-45ea-5d7b-f013f283f71d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 548.5721ms + duration: 334.648142ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ffcbe36e-67a7-0269-fbc7-e90b02ed4ae3 + - f63cb82c-3d27-08c7-5485-d9e7f99bd46c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:20:51 GMT + - Tue, 01 Aug 2023 12:26:43 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6ce74f72-4440-4ecb-453e-bd9585698820 + - 0e0c0002-519a-4a39-6ba1-5f0cb6d8f317 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 219.2405ms + duration: 251.804112ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ffcbe36e-67a7-0269-fbc7-e90b02ed4ae3 + - f63cb82c-3d27-08c7-5485-d9e7f99bd46c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:51 GMT + - Tue, 01 Aug 2023 12:26:43 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5782618d-7e6d-4306-60eb-00d30dcd05ed + - 051b86e8-1293-48db-5c06-5dfd12e2a217 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 209.0736ms + duration: 147.39883ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 22130f61-dcc9-cced-aea4-e7bacf530683 + - bab072da-6ef4-94b6-3845-c620af04ebd9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:52 GMT + - Tue, 01 Aug 2023 12:26:43 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 48714faf-138f-4799-72b8-e156ee9bb369 + - 0ac53fdd-3cf0-4a9b-4071-1ad8cadc66bc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 627.3648ms + duration: 218.835846ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d7280105-0702-dc66-9306-a89ece6d8ace + - 51998a4c-9003-1053-958f-779e5dddc0ab X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:20:52 GMT + - Tue, 01 Aug 2023 12:26:44 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e3aa2439-a1c9-454e-6deb-e63b361eda01 + - 9cc95e42-36ef-422e-53e2-1757351df01e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 271.8875ms + duration: 253.429474ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d7280105-0702-dc66-9306-a89ece6d8ace + - 51998a4c-9003-1053-958f-779e5dddc0ab X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:53 GMT + - Tue, 01 Aug 2023 12:26:44 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a720aa19-f43c-41b8-70f9-68a4555ed3a3 + - 05f49d0f-94d0-4d59-4569-49ffb04b132e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 136.7251ms + duration: 190.180433ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3dcae057-4954-5ad0-4f0b-abb64c6f72cf + - f2e2df36-7420-dce3-54f6-32100cd62f36 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:53 GMT + - Tue, 01 Aug 2023 12:26:45 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8a173abe-ef1d-444a-7b16-541503c2b458 + - 4da02bb6-8496-411e-48c1-33e605285ce9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 464.4916ms + duration: 291.598561ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 85b6b6d0-a767-fb48-3b82-e756486aef62 + - a4b69a06-64fb-cdfb-8e2b-d702f2b9003b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:20:53 GMT + - Tue, 01 Aug 2023 12:26:45 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 61a6d4d0-6f21-4e9f-584f-9e9e8f5c5cdc + - 2e4559d3-414e-4dc2-687c-6d9c029a0cb4 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 206.3184ms + duration: 175.614161ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 85b6b6d0-a767-fb48-3b82-e756486aef62 + - a4b69a06-64fb-cdfb-8e2b-d702f2b9003b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:53 GMT + - Tue, 01 Aug 2023 12:26:45 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1be1d268-56b0-4371-5265-160635eaa337 + - decbd484-e250-416b-6711-291c781f1023 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 129.4672ms + duration: 148.735577ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 70c79950-00b8-a884-5984-3738657a571c + - 3711b9c3-9d02-e16b-fc4a-f193c728fe41 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:54 GMT + - Tue, 01 Aug 2023 12:26:45 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4718992c-8032-4471-4e80-f7e53e6f0d1c + - dfb0b395-2f76-4dd4-6f68-341dad9b7b13 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 423.8265ms + duration: 277.364745ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ba893497-f408-08d8-dcb6-f0c478f563b0 + - e2ddefac-a843-5b46-656c-466c8667f65a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:20:54 GMT + - Tue, 01 Aug 2023 12:26:45 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6ff9ef25-8142-4d11-7eea-5fc191b3fbd8 + - 5ac6c2f5-56fe-48b2-5627-8bde5ca675f1 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 194.274ms + duration: 212.511745ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ba893497-f408-08d8-dcb6-f0c478f563b0 + - e2ddefac-a843-5b46-656c-466c8667f65a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:54 GMT + - Tue, 01 Aug 2023 12:26:46 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fca8df5d-7413-4014-6712-fcd05f1dfe36 + - 08fea5af-a97d-413b-68df-ff41185500ec X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 171.4274ms + duration: 220.728187ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8fbfa33d-5b43-46a6-73b8-7f963125e5a1 + - 05491f64-eae2-99f6-2024-04b6f934a328 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:55 GMT + - Tue, 01 Aug 2023 12:26:46 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6c924bf5-7977-46a9-7380-c82f6e7eb4bd + - 0547b52e-a105-4989-62ab-7bd9ba19f3f6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.8002ms + duration: 308.720092ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a766ba81-6fe6-bd71-c60a-6c2dff8815d2 + - b7d383d3-0c01-2f6b-1e03-677bf8ddb3bb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:20:55 GMT + - Tue, 01 Aug 2023 12:26:46 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d0fb40d2-c2b4-4578-5145-dc90ca7088aa + - 3a66609a-aac2-4adc-525d-3af178726cac X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 223.2564ms + duration: 291.504554ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a766ba81-6fe6-bd71-c60a-6c2dff8815d2 + - b7d383d3-0c01-2f6b-1e03-677bf8ddb3bb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:55 GMT + - Tue, 01 Aug 2023 12:26:46 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3fbc2c27-9dc8-4dc4-6200-96dec2681001 + - b4f30b08-cccc-4c68-5808-f14848dd69c1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 178.6496ms + duration: 100.853252ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93276e67-ca90-b855-dc2a-3a9500221d04 + - 5a5c0937-639a-aa0f-2966-12d48a869add X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:20:56 GMT + - Tue, 01 Aug 2023 12:26:47 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 365a32aa-ec63-4faf-514b-8502a10ad98c + - 744d3bae-9e6e-4dd3-763d-f37407a33d3f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 466.4884ms + duration: 287.598198ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml index 58734373..b50a4fcf 100644 --- a/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml +++ b/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4b04f1b4-551d-39de-6dd6-82a8c59d17b2 + - 088a3d5d-edfe-0f9f-cbc6-0b3c29357985 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:30 GMT + - Tue, 01 Aug 2023 12:26:48 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a92b5dd0-1e22-40f2-406d-9c53d3b8f51b + - 3cd3f654-5d55-4dde-54cf-246d5e3e4c7a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 866.422ms + duration: 343.343148ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 806a09da-7f2e-c4a9-8958-46f8227bbb5f + - 79c734d8-6440-81e8-e9cd-846a5349f146 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:25:31 GMT + - Tue, 01 Aug 2023 12:26:48 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 442c7bc4-960d-4407-5277-37a00fc1c4d0 + - 9b462c4f-43e5-454f-5f91-395ba1f42fed X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 246.2034ms + duration: 205.295263ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 806a09da-7f2e-c4a9-8958-46f8227bbb5f + - 79c734d8-6440-81e8-e9cd-846a5349f146 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"}]' + body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:31 GMT + - Tue, 01 Aug 2023 12:26:48 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b37f693b-a7e0-4b9e-4122-1753580df884 + - 08fbf786-8820-4376-5bd2-e701322e4887 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 223.1394ms + duration: 173.849346ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 035b355e-3f7b-85c9-4158-58a218388b91 + - 16dbcac5-4851-9ed8-7b50-77faa2d5fbe0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:31 GMT + - Tue, 01 Aug 2023 12:26:49 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 88391237-08e3-4e14-4f9e-f4f48584b70d + - b18ab726-ea9c-4f91-4ba8-ff6894a31f15 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 404.9149ms + duration: 225.401303ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0780917d-72d1-5fe1-206a-3b87076bbe16 + - d807a973-a4ac-fcef-2a29-14eda89ec405 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:25:31 GMT + - Tue, 01 Aug 2023 12:26:49 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - bded8b0e-38b8-4f3d-7ba9-a6e5927d55a8 + - 1453c033-7dd2-4530-705b-e9e5a9f1e12b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 198.6219ms + duration: 181.345057ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0780917d-72d1-5fe1-206a-3b87076bbe16 + - d807a973-a4ac-fcef-2a29-14eda89ec405 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"}]' + body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:32 GMT + - Tue, 01 Aug 2023 12:26:49 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c2364a7b-edc4-4ade-5255-985cc9bac69e + - a8397cf7-cb1a-4411-7acb-f4e08fbd329b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 157.9992ms + duration: 207.014714ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 91412da2-e742-1bcf-46d2-b3b53d10ae62 + - c8f46139-3c54-f9cb-983a-603c44123cd2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:32 GMT + - Tue, 01 Aug 2023 12:26:49 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dd6477b9-8bfd-461e-51e9-f021fc7e28fe + - a37de764-476b-4387-7890-cdb46b687e4a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.6463ms + duration: 225.717867ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3c78041a-4356-1830-2d6d-19be03a56485 + - e5cd022c-be1b-3e18-27c1-7e724dba7a69 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:25:32 GMT + - Tue, 01 Aug 2023 12:26:50 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 49022250-c1dc-4684-4469-86a667166463 + - ba1e3dba-678b-42e5-4382-f1c8c15a8022 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 254.7499ms + duration: 190.405774ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3c78041a-4356-1830-2d6d-19be03a56485 + - e5cd022c-be1b-3e18-27c1-7e724dba7a69 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"}]' + body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:33 GMT + - Tue, 01 Aug 2023 12:26:50 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b928ce58-42c2-4486-7f1e-f485e3af51fe + - c605d6d8-b1b9-457c-79a2-c538bdc2824b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 154.2153ms + duration: 146.497196ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4072d5b8-56ac-3b74-f12c-5f10e4613052 + - 294b0f6d-dbde-a2dd-54f7-93f0edd3a2d4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:33 GMT + - Tue, 01 Aug 2023 12:26:50 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c55c780a-006d-4f24-5198-a3a97bde2254 + - bf198573-9378-445a-6d27-0dc3ad95061c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 406.1916ms + duration: 264.43866ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2bd62e67-2641-504f-3d83-9bd2d741b21d + - bc722d36-0da2-941e-f7ff-c3e5ec9ddf95 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:25:33 GMT + - Tue, 01 Aug 2023 12:26:50 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0b3652f3-7d33-4b2c-4ba5-424caa172e4e + - b940fc2c-3b98-4992-4d1f-d01f06adb709 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 230.7862ms + duration: 163.375167ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2bd62e67-2641-504f-3d83-9bd2d741b21d + - bc722d36-0da2-941e-f7ff-c3e5ec9ddf95 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"}]' + body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:33 GMT + - Tue, 01 Aug 2023 12:26:51 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 57c37965-c627-45ca-55dc-6c4b8d8005fd + - e56b9dc6-5d11-49ee-7952-cc20491b455c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 170.7911ms + duration: 200.610016ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f9852643-2118-69cf-8f22-0a09ee4866cb + - 3fbb7e2e-6396-e8f7-7a46-3177a14c6e9d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:34 GMT + - Tue, 01 Aug 2023 12:26:51 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6bad736e-b9ed-4f25-7ffe-e325556ed7c6 + - cb235798-735b-4837-76c6-05efd5a006b9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 399.1897ms + duration: 371.683808ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a6864bb1-f5b8-49b5-685f-828b21b4607d + - 89ef3d50-7ca3-929f-2c84-982d7a577abb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 07 Jul 2023 06:25:34 GMT + - Tue, 01 Aug 2023 12:26:51 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ce57ab4e-3113-4cbc-54fa-f73e475c55ce + - a9ad9c03-d9cc-436b-6f03-cf09d2c1a0cd X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 211.2778ms + duration: 191.239311ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/plan?list User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a6864bb1-f5b8-49b5-685f-828b21b4607d + - 89ef3d50-7ca3-929f-2c84-982d7a577abb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-07-07T05:43:26.584285Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-07-07T05:43:29.176568Z"}]' + body: '[{"catalog_id":"d3ec8aed-4ec5-4b91-a3ec-17cae30a1dfc","catalog_name":"standard","created_at":"2020-08-17T09:00:26.04656Z","data_center":"","description":"Feature Flags service standard plan","free":true,"id":"ea585bd1-2503-4f55-822c-501519879ab9","labels":"commercial_name = standard","metadata":{"bullets":["Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle."],"displayName":"standard","supportedMaxOSBVersion":2.14,"supportedMinOSBVersion":2.13,"supportedPlatforms":["cloudfoundry","kubernetes","sapcp"]},"name":"standard","ready":true,"service_offering_id":"8d5d96d0-fa2d-40c9-951f-c9ed571ba5da","service_offering_name":"feature-flags","updated_at":"2023-08-01T11:43:28.852623Z"},{"catalog_id":"760987b6-6277-4e0f-91e9-543a02d1631c","catalog_name":"standard","created_at":"2020-09-18T12:00:42.126327Z","data_center":"","description":"Allows consumption of SAP Alert Notification service events as well as posting custom events","free":false,"id":"129854b4-4928-4879-9bb1-421047d4fa69","labels":"commercial_name = standard","metadata":{"bullets":["100 registered actions","500 registered conditions","100 registered subscriptions","100 registered technical clients (service keys)","200 stored events of type ''matched events''","200 stored events of type ''undelivered events''","300 calls to Alert Notification configuration APIs per minute","200 calls to Alert Notification consumer APIs per minute","500 events ingested through Alert Notification producer APIs per minute"],"displayName":"standard","supportedMinOSBVersion":"2.11","supportedPlatforms":["cloudfoundry","kubernetes","sapbtp"]},"name":"standard","ready":true,"service_offering_id":"fadc3168-639f-46b4-a71b-08e06809fb74","service_offering_name":"alert-notification","updated_at":"2023-08-01T11:43:31.54123Z"}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:34 GMT + - Tue, 01 Aug 2023 12:26:51 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 150589bb-e68b-45c5-451a-df7f890bfbc6 + - 6aff3029-19f3-47c5-55af-f634f704ae64 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 144.0541ms + duration: 121.842191ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.1 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d806c226-37a8-e5c2-ad2b-ed604f20a3bf + - 0964c512-51bf-f470-9b6f-33d891d249f7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 07 Jul 2023 06:25:35 GMT + - Tue, 01 Aug 2023 12:26:52 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4258e300-d53a-4ef0-45fb-a2a528f45b45 + - 9d7d17ea-a3fc-4970-484e-1458522c50a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.7674ms + duration: 260.932285ms diff --git a/internal/provider/fixtures/datasource_subaccount_subscription_by_id_and_plan.yaml b/internal/provider/fixtures/datasource_subaccount_subscription_by_id_and_plan.yaml index 32859e22..ef96c1e8 100644 --- a/internal/provider/fixtures/datasource_subaccount_subscription_by_id_and_plan.yaml +++ b/internal/provider/fixtures/datasource_subaccount_subscription_by_id_and_plan.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e0d9b9f-84ab-7fae-0568-8d6bb1e06c88 + - 356fb5f1-ab30-dc64-c58a-588488a3e2b2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:31 GMT + - Tue, 01 Aug 2023 07:34:05 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6e02eb6c-69e8-4f47-4373-9dce8f1b1cdd + - a5f7bb24-7e98-4943-6546-031930e0e104 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 531.4874ms + duration: 175.482963ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0128bc32-bab8-7b9e-7ffe-1f1f06949e21 + - 4b032caa-d22d-a876-c0a4-d417fa45c434 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:09:31 GMT + - Tue, 01 Aug 2023 07:34:05 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6b7d51a5-6c6f-42df-47b7-dfd15f69b374 + - 06dfa1df-82ee-48ce-4060-2b17b8fccb61 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 204.5239ms + duration: 163.862402ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0128bc32-bab8-7b9e-7ffe-1f1f06949e21 + - 4b032caa-d22d-a876-c0a4-d417fa45c434 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:31 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - df7700c0-1753-402b-44b9-33d2da92a567 + - c49d60c0-cf4f-4ab0-4b24-66bd6b9dfa54 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 423.1621ms + duration: 323.952359ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eaebe2d2-818f-ef3b-4eec-e3e116c2748e + - 45422192-48dc-2cfa-0bd1-23327a90577a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:32 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - db7a9571-1f9f-4417-6760-8102b8a45967 + - 1d979e86-967f-42c3-6e26-5c789c4dddc2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.6983ms + duration: 260.518007ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 370c5001-9e0d-e2a9-959f-8908d267e39a + - 1ce2fdfd-486d-c06c-e7b3-4cf1f3a349b9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:09:32 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d4a5d400-efcb-4262-75ad-ec3aa0652395 + - b3959e9e-a918-40d0-77b3-d767a1d1087a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 172.1783ms + duration: 202.254878ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 370c5001-9e0d-e2a9-959f-8908d267e39a + - 1ce2fdfd-486d-c06c-e7b3-4cf1f3a349b9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -405,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:32 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a46f7a1a-316a-4b4e-6ccf-ab85c950118f + - 219742d6-6c5c-42e9-7e25-f33f0004622d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.8008ms + duration: 290.735997ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 82e59132-85da-238b-3b61-104385923ae8 + - 6a16917f-01b9-8615-3f41-5380bc70121b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:33 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a0d1e724-a526-4c95-622f-f07478d43aa9 + - 8c45bfbf-7d06-4d68-7879-d591926b62ca X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.922ms + duration: 267.423927ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cce5689d-641e-4876-06d6-fde1ef212790 + - f49ee2b9-f93b-531f-be6e-6ee0084ab39c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:09:33 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2412be27-beed-4b3e-4417-dbc5a2103d5c + - 3c0b9818-10e8-4822-7b67-b32ee115b4fd X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 184.4082ms + duration: 390.75674ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cce5689d-641e-4876-06d6-fde1ef212790 + - f49ee2b9-f93b-531f-be6e-6ee0084ab39c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -621,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:33 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5811a5bf-479a-48b3-7e2c-b592317d9f55 + - f6517ade-5be6-4ed3-55c8-52647bf1b85b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.361ms + duration: 380.393582ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 127a5155-cef3-6b2f-0b85-8a4fb3075f0a + - f577d3f4-76f0-90c2-d8ea-464066883e03 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:34 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c66938c6-d74f-43aa-4536-a00aa21b23eb + - f647f927-955f-436f-5a2d-cd0761ae2462 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 346.7652ms + duration: 264.814744ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fef0f46e-203f-dbd6-c810-9322ccfeb152 + - 83ae1733-670d-8059-e6d0-b8762f999b16 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:09:34 GMT + - Tue, 01 Aug 2023 07:34:09 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6880273d-3ee4-42f4-4509-a3eb34c1d957 + - 659093ee-7ea1-4d89-7509-cab694a91ce4 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 167.2937ms + duration: 143.656012ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fef0f46e-203f-dbd6-c810-9322ccfeb152 + - 83ae1733-670d-8059-e6d0-b8762f999b16 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:34 GMT + - Tue, 01 Aug 2023 07:34:09 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ef84a619-8d96-4071-6c3b-efec75800d6a + - 4b41a568-89ab-40bf-7e50-2756e6f1b76e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 304.1628ms + duration: 322.065139ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1561fc3f-187c-67f6-b8e2-84d07a62a771 + - 2ccc7f2b-d600-8856-46d5-f88725c9536b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:35 GMT + - Tue, 01 Aug 2023 07:34:09 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d4750008-8240-4182-728e-6e14d78c5c1d + - 0347da93-d66a-4b01-62c8-782e64b5a192 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 355.1566ms + duration: 267.011041ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1c0387a0-2aaa-d6dd-b672-f92447944a31 + - a3cd9386-343f-67a3-ff1a-d0a299c5259f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 07:09:35 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 64ef2908-4a6f-4ba0-6f0a-e479f693ea5d + - 7e92fd77-0e6f-4683-4688-bfce49146071 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 173.7748ms + duration: 381.528172ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1c0387a0-2aaa-d6dd-b672-f92447944a31 + - a3cd9386-343f-67a3-ff1a-d0a299c5259f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:35 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 55ba86cc-6f00-4dbe-5ae5-d207c1d4da7e + - 59ef0ea6-e6f0-44e7-4827-5f2e45b38643 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 345.0344ms + duration: 305.969538ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2409a82c-0c44-c44f-36b5-75c130fcc0eb + - 859dfdd4-36d8-c74e-19d6-b5cda76c1fc1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 07:09:36 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7026c0b3-a441-4178-4458-f7b17a248850 + - 21e3048a-8f7e-470f-5db2-d67a573ed732 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 380.9403ms + duration: 281.990876ms diff --git a/internal/provider/fixtures/datasource_subaccount_subscriptions.yaml b/internal/provider/fixtures/datasource_subaccount_subscriptions.yaml index caaed28c..1da43e4b 100644 --- a/internal/provider/fixtures/datasource_subaccount_subscriptions.yaml +++ b/internal/provider/fixtures/datasource_subaccount_subscriptions.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fdce7487-e4c7-010b-3643-61ae9d7c8a99 + - eb535d22-f362-a235-9f2c-96736b12eca5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:05 GMT + - Tue, 01 Aug 2023 13:18:33 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1d9efc20-08bc-456f-5a2c-c1cc307bf56f + - 6c167500-f4fd-45fb-5c55-3452afcefd86 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 520.0602ms + duration: 458.599442ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c6081873-5927-7660-1dc8-edd9bf47f75a + - 3f35eef3-9612-dcde-42d5-eb34f2e622ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:37:05 GMT + - Tue, 01 Aug 2023 13:18:33 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 157b5ab1-095a-4c4a-6139-e2921228e00a + - ac11cb9d-1095-497b-4cdb-e8ab8a393655 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 189.8388ms + duration: 285.761644ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c6081873-5927-7660-1dc8-edd9bf47f75a + - 3f35eef3-9612-dcde-42d5-eb34f2e622ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -182,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Foundation / Cross Services"}]}},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"BC-NEO-AUDITLOG"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.dt.cpp.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"f1a85532-2d3b-40fd-bd30-d89242684c9e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg\u003d\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]},"incidentTrackingComponent":"EP-CPP-OPS","modifiedDate":"Jul 11, 2023, 6:24:52 AM","createdDate":"Jul 11, 2023, 6:24:37 AM"}]}' + body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg\u003d\u003d","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"View and manage Feature Flags Service instances.","additionalPlanFeatures":[],"displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","shortDescription":"Control the rollout of new features.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-FEATUREFLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Create portal sites with content and business apps.","additionalPlanFeatures":[],"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"EP-CPP-OPS"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"ads-configui","commercialAppName":"ads-configui","appId":"ads-xsappname!b69807","planName":"default","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Configure Adobe Document Services. Access the template store UI.","additionalPlanFeatures":[],"displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering \u0027adobe\u0027 into the search field.","shortDescription":"Generate print and interactive forms using Adobe Document Services.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg\u003d\u003d","globalAccountId":"96116dce-2827-4c6a-af7e-5fb6cff3f02d","tenantId":"86e45883-9624-4013-abf5-82b7da6088f3","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-SRV-FP-CF"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"IRPA","commercialAppName":"IRPA","appId":"ipa-preprod--dot--main--uaa-ipa!t2124","planName":"free","supportsPlanUpdates":true,"supportsParametersUpdates":false,"planDescription":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","additionalPlanFeatures":[],"displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","shortDescription":"Design, configure, and execute automation projects.","iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"0f3f9c97-2404-494c-b3c8-040a2b93aa1c","tenantId":"5c6717ed-94ce-4a5e-9dc9-e13362bea76c","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"CA-ML-IPA"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:06 GMT + - Tue, 01 Aug 2023 13:18:34 GMT Expires: - "0" Pragma: @@ -211,33 +211,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4614448d-603e-4c60-4a44-620268315df2 + - 2531b0dc-32dd-45ae-7f84-199ca0bcd6c8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 520.591ms + duration: 689.647944ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2d9c1272-37b8-79dc-748b-14a91bd9e7c6 + - 1a03e161-42f5-a8b5-0a41-26acbc253b9e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -248,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:06 GMT + - Tue, 01 Aug 2023 13:18:34 GMT Expires: - "0" Pragma: @@ -273,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b128d52f-4ef3-4869-7858-8eb92a059141 + - 29650ea4-669d-4d19-611a-8e41b3aa0194 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 391.3863ms + duration: 252.011447ms - id: 4 request: proto: HTTP/1.1 @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31c6c0ad-69e5-08a3-74ba-eaa1c680019b + - 360f0c8c-65d4-c7d1-4886-5ad3456936d6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -325,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:37:07 GMT + - Tue, 01 Aug 2023 13:18:35 GMT Expires: - "0" Location: @@ -349,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2b855c59-8438-48de-4eae-502d7ddb4f52 + - 00a0f33f-e35c-4a9e-6ce5-43001d3033e2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 212.4909ms + duration: 305.603317ms - id: 5 request: proto: "" @@ -375,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31c6c0ad-69e5-08a3-74ba-eaa1c680019b + - 360f0c8c-65d4-c7d1-4886-5ad3456936d6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -398,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Foundation / Cross Services"}]}},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"BC-NEO-AUDITLOG"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.dt.cpp.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"f1a85532-2d3b-40fd-bd30-d89242684c9e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg\u003d\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]},"incidentTrackingComponent":"EP-CPP-OPS","modifiedDate":"Jul 11, 2023, 6:24:52 AM","createdDate":"Jul 11, 2023, 6:24:37 AM"}]}' + body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg\u003d\u003d","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"View and manage Feature Flags Service instances.","additionalPlanFeatures":[],"displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","shortDescription":"Control the rollout of new features.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-FEATUREFLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Create portal sites with content and business apps.","additionalPlanFeatures":[],"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"EP-CPP-OPS"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"ads-configui","commercialAppName":"ads-configui","appId":"ads-xsappname!b69807","planName":"default","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Configure Adobe Document Services. Access the template store UI.","additionalPlanFeatures":[],"displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering \u0027adobe\u0027 into the search field.","shortDescription":"Generate print and interactive forms using Adobe Document Services.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg\u003d\u003d","globalAccountId":"96116dce-2827-4c6a-af7e-5fb6cff3f02d","tenantId":"86e45883-9624-4013-abf5-82b7da6088f3","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-SRV-FP-CF"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"IRPA","commercialAppName":"IRPA","appId":"ipa-preprod--dot--main--uaa-ipa!t2124","planName":"free","supportsPlanUpdates":true,"supportsParametersUpdates":false,"planDescription":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","additionalPlanFeatures":[],"displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","shortDescription":"Design, configure, and execute automation projects.","iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"0f3f9c97-2404-494c-b3c8-040a2b93aa1c","tenantId":"5c6717ed-94ce-4a5e-9dc9-e13362bea76c","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"CA-ML-IPA"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:07 GMT + - Tue, 01 Aug 2023 13:18:35 GMT Expires: - "0" Pragma: @@ -427,33 +427,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e2a52838-8da6-4bde-4d23-daa08e36953a + - 742c1c83-611c-40e1-5ff0-630b33766306 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.6252ms + duration: 706.243571ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ca4944df-4746-df63-fe16-fcb22fbe8a99 + - 30724ccd-c567-82af-489e-c8e99722ae84 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -464,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:08 GMT + - Tue, 01 Aug 2023 13:18:36 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cf7c46f1-abb6-449a-6125-e987b93df83d + - 457a7289-8b61-44ce-71ab-d840c50f7587 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 326.2304ms + duration: 230.073586ms - id: 7 request: proto: HTTP/1.1 @@ -513,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93a7d9ff-5cfb-3066-e10e-ef46a5d7d969 + - 1d08b38a-b451-c3b9-3e84-05a8189e451b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -541,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:37:08 GMT + - Tue, 01 Aug 2023 13:18:36 GMT Expires: - "0" Location: @@ -565,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1b094f5f-ccfc-4281-5935-8fb3adbe1edd + - c560a028-5970-4920-5bd9-8335a2c56a9a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 219.9289ms + duration: 298.257985ms - id: 8 request: proto: "" @@ -591,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93a7d9ff-5cfb-3066-e10e-ef46a5d7d969 + - 1d08b38a-b451-c3b9-3e84-05a8189e451b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -614,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Foundation / Cross Services"}]}},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"BC-NEO-AUDITLOG"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.dt.cpp.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"f1a85532-2d3b-40fd-bd30-d89242684c9e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg\u003d\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]},"incidentTrackingComponent":"EP-CPP-OPS","modifiedDate":"Jul 11, 2023, 6:24:52 AM","createdDate":"Jul 11, 2023, 6:24:37 AM"}]}' + body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg\u003d\u003d","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"View and manage Feature Flags Service instances.","additionalPlanFeatures":[],"displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","shortDescription":"Control the rollout of new features.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-FEATUREFLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Create portal sites with content and business apps.","additionalPlanFeatures":[],"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"EP-CPP-OPS"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"ads-configui","commercialAppName":"ads-configui","appId":"ads-xsappname!b69807","planName":"default","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Configure Adobe Document Services. Access the template store UI.","additionalPlanFeatures":[],"displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering \u0027adobe\u0027 into the search field.","shortDescription":"Generate print and interactive forms using Adobe Document Services.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg\u003d\u003d","globalAccountId":"96116dce-2827-4c6a-af7e-5fb6cff3f02d","tenantId":"86e45883-9624-4013-abf5-82b7da6088f3","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-SRV-FP-CF"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"IRPA","commercialAppName":"IRPA","appId":"ipa-preprod--dot--main--uaa-ipa!t2124","planName":"free","supportsPlanUpdates":true,"supportsParametersUpdates":false,"planDescription":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","additionalPlanFeatures":[],"displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","shortDescription":"Design, configure, and execute automation projects.","iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"0f3f9c97-2404-494c-b3c8-040a2b93aa1c","tenantId":"5c6717ed-94ce-4a5e-9dc9-e13362bea76c","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"CA-ML-IPA"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:08 GMT + - Tue, 01 Aug 2023 13:18:37 GMT Expires: - "0" Pragma: @@ -643,33 +643,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 060e9f09-5669-4eac-69cf-3873181c8abf + - 5868f984-ef08-48b4-4e6f-9c7a13e3f7f4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 391.5009ms + duration: 544.427758ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2a819ba6-e899-c09f-b0e6-8ff22df9ec0c + - 5f2d877f-0c64-91ea-c003-74963d337b9d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -680,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:09 GMT + - Tue, 01 Aug 2023 13:18:37 GMT Expires: - "0" Pragma: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0dff911a-62d7-4d35-6921-aa4e634f1724 + - dada16f7-e537-4b39-7964-90ae08f4ad48 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 324.0031ms + duration: 292.070036ms - id: 10 request: proto: HTTP/1.1 @@ -729,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8768edab-fa6c-7dc8-50cd-29b2272910b3 + - 5e99e086-4741-aa28-4c11-ba82a08335bd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -757,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:37:09 GMT + - Tue, 01 Aug 2023 13:18:38 GMT Expires: - "0" Location: @@ -781,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 269370da-096b-4a0a-41ba-aee0639c63b0 + - c90ff661-fecc-4bff-692c-caf31f49792f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 199.4616ms + duration: 290.956747ms - id: 11 request: proto: "" @@ -807,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8768edab-fa6c-7dc8-50cd-29b2272910b3 + - 5e99e086-4741-aa28-4c11-ba82a08335bd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -830,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Foundation / Cross Services"}]}},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"BC-NEO-AUDITLOG"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.dt.cpp.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"f1a85532-2d3b-40fd-bd30-d89242684c9e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg\u003d\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]},"incidentTrackingComponent":"EP-CPP-OPS","modifiedDate":"Jul 11, 2023, 6:24:52 AM","createdDate":"Jul 11, 2023, 6:24:37 AM"}]}' + body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg\u003d\u003d","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"View and manage Feature Flags Service instances.","additionalPlanFeatures":[],"displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","shortDescription":"Control the rollout of new features.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-FEATUREFLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Create portal sites with content and business apps.","additionalPlanFeatures":[],"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"EP-CPP-OPS"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"ads-configui","commercialAppName":"ads-configui","appId":"ads-xsappname!b69807","planName":"default","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Configure Adobe Document Services. Access the template store UI.","additionalPlanFeatures":[],"displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering \u0027adobe\u0027 into the search field.","shortDescription":"Generate print and interactive forms using Adobe Document Services.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg\u003d\u003d","globalAccountId":"96116dce-2827-4c6a-af7e-5fb6cff3f02d","tenantId":"86e45883-9624-4013-abf5-82b7da6088f3","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-SRV-FP-CF"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"IRPA","commercialAppName":"IRPA","appId":"ipa-preprod--dot--main--uaa-ipa!t2124","planName":"free","supportsPlanUpdates":true,"supportsParametersUpdates":false,"planDescription":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","additionalPlanFeatures":[],"displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","shortDescription":"Design, configure, and execute automation projects.","iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"0f3f9c97-2404-494c-b3c8-040a2b93aa1c","tenantId":"5c6717ed-94ce-4a5e-9dc9-e13362bea76c","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"CA-ML-IPA"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:09 GMT + - Tue, 01 Aug 2023 13:18:38 GMT Expires: - "0" Pragma: @@ -859,33 +859,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - de141465-114d-40de-65ca-0e24a0c2acf9 + - 3077f122-cceb-47e4-4201-f036f55fd538 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 444.0147ms + duration: 610.964845ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 175dae15-607a-e63d-f567-9ee004200663 + - 3a53f4bf-7078-4a1e-8274-f3bffc94e40c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -896,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:10 GMT + - Tue, 01 Aug 2023 13:18:39 GMT Expires: - "0" Pragma: @@ -921,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 72fd1881-abfb-4d64-576b-2e060c069626 + - d0e2ea33-662c-4c80-756c-2e0d71883161 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.6492ms + duration: 256.930305ms - id: 13 request: proto: HTTP/1.1 @@ -945,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d0974504-837b-d465-313a-35cb91f3d1a9 + - c267333e-11f0-748b-6a40-45510efa0636 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -973,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 11 Jul 2023 06:37:10 GMT + - Tue, 01 Aug 2023 13:18:39 GMT Expires: - "0" Location: @@ -997,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f032ec2d-77a6-4d51-7089-2c2b721bde76 + - 487476a7-7a0a-411b-71fb-30f8e9b948d0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 315.6278ms + duration: 299.569605ms - id: 14 request: proto: "" @@ -1023,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?list User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d0974504-837b-d465-313a-35cb91f3d1a9 + - c267333e-11f0-748b-6a40-45510efa0636 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1046,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Foundation / Cross Services"}]}},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"BC-NEO-AUDITLOG"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.dt.cpp.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"f1a85532-2d3b-40fd-bd30-d89242684c9e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg\u003d\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]},"incidentTrackingComponent":"EP-CPP-OPS","modifiedDate":"Jul 11, 2023, 6:24:52 AM","createdDate":"Jul 11, 2023, 6:24:37 AM"}]}' + body: '{"applications":[{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"mdo-one-mds-master","commercialAppName":"mdo-one-mds-master","appId":"mdo-one-mds-master!t46510","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","shortDescription":"Orchestrate master data distribution","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg\u003d\u003d","category":"Extension Suite - Development Efficiency","categoryDisplayName":"Extension Suite - Development Efficiency","globalAccountId":"2342216e-8a13-4aab-894e-11e5280a90f9","tenantId":"ac38918a-900c-4d3c-92f3-398883d3c5e7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale\u003den-US\u0026version\u003dCLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"incidentTrackingComponent":"LOD-MDM-ORC"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"cias","commercialAppName":"cias","appId":"cias!b74866","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Plan to use the Cloud Integration Automation Service - UI Application","additionalPlanFeatures":[],"displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","shortDescription":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","globalAccountId":"772a1555-53bf-4bc2-b4ab-fbc18f972b0b","tenantId":"172e334b-4f52-490b-8c3c-c15c775ea815","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-INS-CIT-RT"},{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.content-agent.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"60c44e9d-2696-4b8f-91ea-9efcd3c23ffb","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"content-agent-ui","commercialAppName":"content-agent-ui","appId":"cas-ui-xsuaa-prod!t216","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"displayName":"Content Agent","description":"Content Agent UI","category":"Integration Suite","categoryDisplayName":"Integration Suite","globalAccountId":"d39f31d1-c84d-448e-bc18-d3571e6e2d6c","tenantId":"3374b000-ef2f-4a11-9fb5-a1636dc1c480","quota":1,"labels":{"test":["label"]},"customerDeveloped":false,"applicationCoordinates":{"propagateTheme":false,"serviceCategories":[{"name":"Integration Suite"}]},"modifiedDate":"Jul 11, 2023, 5:43:09 AM","createdDate":"Jul 11, 2023, 5:43:06 AM"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"feature-flags-dashboard","commercialAppName":"feature-flags-dashboard","appId":"feature-flags!b18","planName":"dashboard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"View and manage Feature Flags Service instances.","additionalPlanFeatures":[],"displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","shortDescription":"Control the rollout of new features.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"Foundation / Cross Services","categoryDisplayName":"Foundation / Cross Services","globalAccountId":"1aa6ae00-fe52-1993-65ff-3613845a7961","tenantId":"fflags-cf-eu12","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-FEATUREFLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"PortalApplication","commercialAppName":"PortalApplication","appId":"portal-cf-dt-approuter!t164","planName":"standard","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Create portal sites with content and business apps.","additionalPlanFeatures":[],"displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","shortDescription":"Create role based, multi-channel sites to access business apps and content.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo\u003d","category":"SaaS Applications","categoryDisplayName":"SaaS Applications","globalAccountId":"SA0225001210","tenantId":"6897360f-7e35-411b-87e7-f3b501f4f9a7","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"EP-CPP-OPS"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"ads-configui","commercialAppName":"ads-configui","appId":"ads-xsappname!b69807","planName":"default","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"Configure Adobe Document Services. Access the template store UI.","additionalPlanFeatures":[],"displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering \u0027adobe\u0027 into the search field.","shortDescription":"Generate print and interactive forms using Adobe Document Services.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg\u003d\u003d","globalAccountId":"96116dce-2827-4c6a-af7e-5fb6cff3f02d","tenantId":"86e45883-9624-4013-abf5-82b7da6088f3","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-SRV-FP-CF"},{"state":"NOT_SUBSCRIBED","authenticationProvider":"XSUAA","appName":"IRPA","commercialAppName":"IRPA","appId":"ipa-preprod--dot--main--uaa-ipa!t2124","planName":"free","supportsPlanUpdates":true,"supportsParametersUpdates":false,"planDescription":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","additionalPlanFeatures":[],"displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","shortDescription":"Design, configure, and execute automation projects.","iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg\u003d\u003d","globalAccountId":"0f3f9c97-2404-494c-b3c8-040a2b93aa1c","tenantId":"5c6717ed-94ce-4a5e-9dc9-e13362bea76c","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"CA-ML-IPA"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:10 GMT + - Tue, 01 Aug 2023 13:18:40 GMT Expires: - "0" Pragma: @@ -1075,33 +1075,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0e962d4a-bff4-47fe-4390-6a75168e21b9 + - 93bcf1c7-e6bb-4f0b-4e6c-407b6c44d841 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.9971ms + duration: 615.139647ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 88ca68cf-ef3f-d619-7188-af8bff30eab7 + - ed5c9684-242a-9715-a43a-5671602b1c2e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1112,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 11 Jul 2023 06:37:11 GMT + - Tue, 01 Aug 2023 13:18:40 GMT Expires: - "0" Pragma: @@ -1137,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 132d071a-1977-441b-5cab-8c08df2aceb1 + - be796558-3af3-46ff-41f7-1aa3b0806a02 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.7824ms + duration: 382.395092ms diff --git a/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_exists.yaml b/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_exists.yaml index 65c4db9d..a6b64555 100644 --- a/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_exists.yaml +++ b/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_exists.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f0e0d9d6-2d38-b88e-1e34-d912a69f69ea + - db14ed23-dfb1-b178-f012-9950b4e0cf2c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:15 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ccc2659c-a2a2-4b21-4bc1-b4a0331ae6ba + - e32466d0-a0ab-45e8-4384-113c6dc0330b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 426.824454ms + duration: 494.644822ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d88c6489-575b-1294-c167-f619e90804f5 + - 9b57a44f-ba52-ead4-7a9c-3280ab49c6e4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:16 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Location: @@ -118,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -127,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 98bcefd0-00f9-4e17-4ba4-41bafa5d8de4 + - 390d3ce0-f572-4be4-6e2d-d34ca4ce4139 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.628108ms + duration: 190.473622ms - id: 2 request: proto: "" @@ -152,10 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d88c6489-575b-1294-c167-f619e90804f5 + - 9b57a44f-ba52-ead4-7a9c-3280ab49c6e4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -181,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:16 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Pragma: @@ -196,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - f3154297-623e-44cc-4c89-02077b34a0ac + - 7a4f4703-d29a-4f4a-70e9-85155472a2b7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 84.367266ms + duration: 135.427873ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7929f4c9-9816-8b01-5f6d-a86ef505e020 + - ec1f9c2e-df74-62c0-79e5-2fa8ebc7af26 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -236,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:17 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Pragma: @@ -261,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bc1187cd-7f43-4bd8-4d75-6ce633a436dd + - 302053fd-c8e4-41ba-7348-96639fbf3d88 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 459.02745ms + duration: 201.936345ms - id: 4 request: proto: HTTP/1.1 @@ -284,10 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cad5b94e-976b-d65f-5aaa-8713ba23b2d5 + - 46fc47d7-9bdd-9205-995c-2ce991a1c818 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -311,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:18 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Location: @@ -324,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -333,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - d42c42ab-a2b7-4e64-6231-e8318faf5246 + - 210314b5-874a-4aaa-6a50-e1818cc20345 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 173.04264ms + duration: 145.37979ms - id: 5 request: proto: "" @@ -358,10 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cad5b94e-976b-d65f-5aaa-8713ba23b2d5 + - 46fc47d7-9bdd-9205-995c-2ce991a1c818 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +405,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:18 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Pragma: @@ -402,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 18f537fd-0a46-4b36-7d5e-4479a8cfa31e + - 8505c7cc-1d9e-4862-43bd-e1f81fda76bf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 93.441636ms + duration: 115.410636ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 35e7e075-4ec2-bf3f-a92d-5b6374db76ab + - d82b17d6-b219-2f21-f92b-42eba267e165 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -442,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:19 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Pragma: @@ -467,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6515171c-cb07-4581-6b82-42a536f34a5c + - df89148a-7de4-4b3f-631b-2cda885c8cc1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 431.998073ms + duration: 200.722462ms - id: 7 request: proto: HTTP/1.1 @@ -490,10 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00b43b1f-8a24-efb5-60f1-6817de777d56 + - cf722cd2-96ee-bcdf-37e5-64699f44b1d5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:19 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Location: @@ -530,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -539,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9702be1b-f5b7-4989-754d-b99edc099418 + - a3ffdd16-69ba-4bd4-6478-d907518ede6a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 199.615054ms + duration: 154.209437ms - id: 8 request: proto: "" @@ -564,10 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00b43b1f-8a24-efb5-60f1-6817de777d56 + - cf722cd2-96ee-bcdf-37e5-64699f44b1d5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -593,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:20 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Pragma: @@ -608,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7fd3d1b5-0ea1-4cb2-4c63-92bb17a07b8c + - 838ef9af-bc68-4263-44cb-390c3dd80c6b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 98.343423ms + duration: 83.737778ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fdeb6afc-824c-b58f-42d5-c37219b10de4 + - 0b4c078a-3ec2-6d4c-a357-74117ba53d82 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -648,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:20 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Pragma: @@ -673,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - befa73fe-0dc2-4ed0-5498-df1f1ec6cda1 + - e4f980ac-5bc7-418a-4e78-6fc59ebb6851 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 451.455543ms + duration: 325.323535ms - id: 10 request: proto: HTTP/1.1 @@ -696,10 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 652c1174-08cc-dfb9-1ee4-f7fa1ccc8b9f + - 43b03516-33a4-ff6d-77bc-744cd00ca7aa X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -723,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:21 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Location: @@ -736,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -745,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1cc2c42a-a52a-4d1f-67b7-be0784d3e7f3 + - ffbdedf9-0806-43bc-48f5-988ecbe31467 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 182.612282ms + duration: 247.967276ms - id: 11 request: proto: "" @@ -770,10 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 652c1174-08cc-dfb9-1ee4-f7fa1ccc8b9f + - 43b03516-33a4-ff6d-77bc-744cd00ca7aa X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -799,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:21 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Pragma: @@ -814,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - aafd2410-459f-4001-5685-ba4335f91ee0 + - cfd6cab5-84c4-4493-5fbd-42ea0ac2fd3f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 104.050695ms + duration: 84.599619ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33112582-3353-37a5-4493-37fbead861fc + - 1585b3b5-e237-a2b2-daa1-c5cc5163fc60 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -854,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:22 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Pragma: @@ -879,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4868235b-cb4a-440a-540e-7d77abf819d7 + - 1e10b83a-f5b3-4b13-7816-7a3014de0da5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 443.114009ms + duration: 198.445257ms - id: 13 request: proto: HTTP/1.1 @@ -902,10 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3d4d27e9-e34d-e998-f239-7af978f25783 + - 73eb2e3f-e43f-f0c6-ab75-f0a905e51bd8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -929,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:23 GMT + - Tue, 01 Aug 2023 07:33:42 GMT Expires: - "0" Location: @@ -942,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -951,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0ad17d17-e2cd-4db6-6f96-d6f82d60cd0f + - b31f9e09-16f8-4dfd-7984-2ee6883a177d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 188.833471ms + duration: 184.586272ms - id: 14 request: proto: "" @@ -976,10 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3d4d27e9-e34d-e998-f239-7af978f25783 + - 73eb2e3f-e43f-f0c6-ab75-f0a905e51bd8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1005,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:23 GMT + - Tue, 01 Aug 2023 07:33:42 GMT Expires: - "0" Pragma: @@ -1020,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43774e47-bdf0-4108-6f6c-85ffc81a28cd + - 26966382-b04d-45e2-58fe-4213e31c40ab X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 106.670088ms + duration: 101.452975ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ea984fa5-ecbc-f22d-a25b-20fb331c747c + - bc65c55d-35fc-e8b0-0543-e2d999b06675 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1060,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:24 GMT + - Tue, 01 Aug 2023 07:33:42 GMT Expires: - "0" Pragma: @@ -1085,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e5e0a9dd-501a-44bc-61a8-e1b096f7b761 + - 8e47e3e5-f425-4667-68f3-43b4b0c2ccaa X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.658236ms + duration: 175.727511ms diff --git a/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_not_existing.yaml b/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_not_existing.yaml index caf68c15..b18bd4af 100644 --- a/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_not_existing.yaml +++ b/internal/provider/fixtures/datasource_subaccount_trust_configuration.custom_idp_not_existing.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a03081f6-9086-6b38-8d3e-370fedcee300 + - ac903412-1ac7-8a1f-fcab-223a957d6fff X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:10:41 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f6878b7f-66ba-4cf3-67fd-388a2774725c + - 37c49965-e677-423f-4fef-8356e616b9f9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 869.8759ms + duration: 377.068901ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ebcc37e5-cce9-42fb-e1e2-c15c1af637bb + - 6ea39836-f059-9107-2dd2-0509aff5e31f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 12 Jul 2023 13:10:42 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Location: @@ -133,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1d49894f-d0d4-4ec7-6535-57f5f132c692 + - 9469f140-a386-462c-5a67-371b982f0098 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 270.1916ms + duration: 143.296064ms - id: 2 request: proto: "" @@ -159,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ebcc37e5-cce9-42fb-e1e2-c15c1af637bb + - 6ea39836-f059-9107-2dd2-0509aff5e31f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Jul 2023 13:10:42 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Pragma: @@ -209,9 +209,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 45c45ce5-e972-4eb2-401c-83cfb07659c5 + - 1eace34d-0f7b-4722-5ebb-71c58f6090b8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.0496ms + duration: 139.615963ms diff --git a/internal/provider/fixtures/datasource_subaccount_trust_configuration.default.yaml b/internal/provider/fixtures/datasource_subaccount_trust_configuration.default.yaml index 957a2e04..4b3dd5a9 100644 --- a/internal/provider/fixtures/datasource_subaccount_trust_configuration.default.yaml +++ b/internal/provider/fixtures/datasource_subaccount_trust_configuration.default.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ddb74b7-c252-9930-7ee0-053eab1a7c80 + - 9ceb04aa-182f-ec47-a981-cfbfd8ab2853 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:05 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3943af90-a7ef-4312-53be-12e1c332779c + - 7dc9a45d-384e-4c96-567c-1d99a6d2470e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 449.212671ms + duration: 208.396066ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f87e9f14-287d-44a8-5be8-b5f24560f1b6 + - 02a29b45-ea43-d9fe-9018-c8a9bcb08edc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:06 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Location: @@ -118,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -127,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 44feee2b-f875-4a73-6a70-3c9f75c67035 + - 32df39f2-320b-419d-7d12-70794fe723c1 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 258.983698ms + duration: 148.480413ms - id: 2 request: proto: "" @@ -152,10 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f87e9f14-287d-44a8-5be8-b5f24560f1b6 + - 02a29b45-ea43-d9fe-9018-c8a9bcb08edc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -174,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:06 GMT + - Tue, 01 Aug 2023 07:33:34 GMT Expires: - "0" Pragma: @@ -196,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - fbab6989-bfde-4afe-57d2-4e718a351cfc + - 7b3500a1-bffb-4484-56fe-6a8a02a71121 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 161.233585ms + duration: 131.449796ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8224dc22-5bdd-d81d-4dba-7f4a60ef2c1a + - 490b38c0-626d-fe33-2b20-3081dd29f55b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -236,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:07 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -261,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 203b15a7-3a58-442d-69c3-e2be95e5c3d4 + - 954d587b-181a-4f7b-5ffa-0919585ea3e2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 458.22654ms + duration: 216.610033ms - id: 4 request: proto: HTTP/1.1 @@ -284,10 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97dee8f8-b041-9270-fb86-0c4d634c94f2 + - 9ddc5b2c-df06-4a84-bfae-1e984f5b106b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -311,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:08 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Location: @@ -324,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -333,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9ffcf504-edfa-4d97-74cb-1a4afb29acae + - 40a9262d-fdfa-4812-77ae-34f87e035537 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 155.400316ms + duration: 182.68278ms - id: 5 request: proto: "" @@ -358,10 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97dee8f8-b041-9270-fb86-0c4d634c94f2 + - 9ddc5b2c-df06-4a84-bfae-1e984f5b106b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -380,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:08 GMT + - Tue, 01 Aug 2023 07:33:35 GMT Expires: - "0" Pragma: @@ -402,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 102223c1-9378-43c6-5a69-10bbc1fd4c50 + - 9f1ce367-9d92-46ce-6a7d-1177944097be X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 175.539305ms + duration: 165.191875ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f649717b-7a01-cdc7-f091-4d5170f13132 + - 6391e8ae-f790-1b5d-6d01-73d5ddaa2dee X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -442,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:09 GMT + - Tue, 01 Aug 2023 07:33:36 GMT Expires: - "0" Pragma: @@ -467,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9c1ca34e-2b58-4e49-6e13-e77ac784dc78 + - 3cb85a2c-27bb-46a3-6f22-3106348cc133 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 451.856017ms + duration: 305.979543ms - id: 7 request: proto: HTTP/1.1 @@ -490,10 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed17241f-78eb-312d-1af3-9b24785be98e + - 556e514a-670b-cc38-5eca-6bde33943514 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:10 GMT + - Tue, 01 Aug 2023 07:33:36 GMT Expires: - "0" Location: @@ -530,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -539,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - fe95ca0a-e03e-4e6c-5623-b115936c6a9d + - 325a4bd0-0857-4bcd-581c-2fea9919e68b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 154.203667ms + duration: 179.305049ms - id: 8 request: proto: "" @@ -564,10 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed17241f-78eb-312d-1af3-9b24785be98e + - 556e514a-670b-cc38-5eca-6bde33943514 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -586,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:10 GMT + - Tue, 01 Aug 2023 07:33:36 GMT Expires: - "0" Pragma: @@ -608,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - a2c44b48-37d7-49f5-7a46-a909e6c60161 + - 81ebcc9d-fcb0-4c4a-4303-beb070cd5af5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 85.205085ms + duration: 153.845887ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ba333301-15d0-419e-45b4-1d84944d4768 + - cbf773e2-48ef-f86d-b20f-7b6c2678dbc9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -648,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:11 GMT + - Tue, 01 Aug 2023 07:33:36 GMT Expires: - "0" Pragma: @@ -673,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2bf897cf-e4e2-46af-4791-157dc2a6d9c6 + - 46f5be88-5e30-47a3-7813-103b8ce8b257 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 507.554793ms + duration: 300.722238ms - id: 10 request: proto: HTTP/1.1 @@ -696,10 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e50b1eb-8704-654f-2dfb-cc50050926e2 + - 58649a54-3dea-aeda-d631-f419d9f2d624 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -723,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:11 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Location: @@ -736,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -745,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - efd0dd4c-6f6c-496c-59d6-5bc85cfd85b3 + - bb554d3e-e1ae-4b1b-6441-d11a10dd2582 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 174.61467ms + duration: 174.287873ms - id: 11 request: proto: "" @@ -770,10 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e50b1eb-8704-654f-2dfb-cc50050926e2 + - 58649a54-3dea-aeda-d631-f419d9f2d624 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -792,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:12 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Pragma: @@ -814,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 78dbc1bb-c161-4b28-77ae-56b6ec05e896 + - 2e49b5b6-47f3-4538-6bfd-2e65e77b5b04 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 149.294914ms + duration: 91.246611ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae64339c-a538-45a7-4168-49e009136920 + - 1de1c9b7-6b19-3b88-0a9d-0aaca268f5ed X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -854,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:12 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Pragma: @@ -879,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 79f2d83b-a47e-449c-5fb4-27a1468e66f0 + - d629c144-1502-4dfb-55be-19c67236455a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.265691ms + duration: 261.877056ms - id: 13 request: proto: HTTP/1.1 @@ -902,10 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6214cd60-7599-8dbe-2764-d1cba4bbc617 + - 9b23abfb-6022-1625-0d1d-d98ca39be2b5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -929,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:09:13 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Location: @@ -942,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -951,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ff2bf3e3-f051-443e-6a6a-71cad6a19127 + - 2cb4b584-b494-4777-4a1a-e801bb8b1b20 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 245.713576ms + duration: 306.55619ms - id: 14 request: proto: "" @@ -976,10 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6214cd60-7599-8dbe-2764-d1cba4bbc617 + - 9b23abfb-6022-1625-0d1d-d98ca39be2b5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -998,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' + body: '{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:13 GMT + - Tue, 01 Aug 2023 07:33:37 GMT Expires: - "0" Pragma: @@ -1020,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 31546695-70c5-4bb6-5654-e1df27430c96 + - fd6fb98f-4230-4e2a-5dda-360a866bec45 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 138.932147ms + duration: 121.394856ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 76962aef-ea51-17ca-e94e-2e9bd00df41f + - 74c8e70f-c2d2-39c7-c56f-c54e6739a33e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1060,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:09:14 GMT + - Tue, 01 Aug 2023 07:33:38 GMT Expires: - "0" Pragma: @@ -1085,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c2bf2a47-de84-42b5-455a-22abef9d9eec + - 2fee0bb0-3f30-49d7-7fa3-caad1940652d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 468.538513ms + duration: 176.810705ms diff --git a/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_exists.yaml b/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_exists.yaml index ebb0011f..fa51ba95 100644 --- a/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_exists.yaml +++ b/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_exists.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6ad2485d-e0a3-66b1-f6ce-631f4ed9fc28 + - 3b142461-b86f-aeab-abee-91abea0e7367 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:09 GMT + - Tue, 01 Aug 2023 12:28:44 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 993a8942-02bb-428c-42f6-ba1d1efd4401 + - d6c35f3d-ae88-4a4f-5755-5c1506d04a54 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 642.7524ms + duration: 622.450567ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c8486eaa-777d-78ad-93fc-3971e551111c + - 733be00d-5d3b-565e-9bf9-beea7f993184 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:15:10 GMT + - Tue, 01 Aug 2023 12:28:44 GMT Expires: - "0" Location: @@ -118,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -127,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6248fcce-1050-429c-6242-74bcd302853c + - c38abe5a-b3c6-4f11-77f1-ecd96fa00738 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 277.376421ms + duration: 232.603397ms - id: 2 request: proto: "" @@ -152,10 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c8486eaa-777d-78ad-93fc-3971e551111c + - 733be00d-5d3b-565e-9bf9-beea7f993184 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -174,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:10 GMT + - Tue, 01 Aug 2023 12:28:45 GMT Expires: - "0" Pragma: @@ -196,36 +204,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8f19fc2a-5e7d-4280-63a1-51270e70648d + - 1734d629-f831-4103-6904-ac3f4346b795 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 264.465283ms + duration: 306.532746ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fc1db4c4-6863-827a-1f1c-ebea9c4c5fa4 + - 638b9781-d0d5-ac8e-b683-791192c956d6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -236,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:11 GMT + - Tue, 01 Aug 2023 12:28:45 GMT Expires: - "0" Pragma: @@ -261,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7c59da47-3484-4fbd-46f5-6883514b7791 + - ac3acc3c-c32a-4b4a-720f-75121992a854 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 542.361816ms + duration: 355.270945ms - id: 4 request: proto: HTTP/1.1 @@ -284,10 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28912883-a39e-4685-76c4-cfc7654aed5a + - bd8e668a-5f6e-d020-742a-eed1a5d4dd3e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -311,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:15:12 GMT + - Tue, 01 Aug 2023 12:28:45 GMT Expires: - "0" Location: @@ -324,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -333,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - cd0d8bd0-702e-4ab5-7530-0a1846875c4a + - ca4c1e45-6a74-456d-4f9c-5d3ae9ffed71 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 241.870372ms + duration: 168.958083ms - id: 5 request: proto: "" @@ -358,10 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28912883-a39e-4685-76c4-cfc7654aed5a + - bd8e668a-5f6e-d020-742a-eed1a5d4dd3e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -380,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:13 GMT + - Tue, 01 Aug 2023 12:28:45 GMT Expires: - "0" Pragma: @@ -402,36 +420,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 21c45b80-f7c7-49ba-6e29-7ed3d1d00d2b + - 04baad5f-ccb5-4261-7c59-86198c2f5635 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 212.372586ms + duration: 214.96882ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a10df5f9-e2f1-e07e-bb00-e815f22e34d7 + - 684db1b6-05c0-c16d-456a-1b1580c7504a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -442,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:14 GMT + - Tue, 01 Aug 2023 12:28:46 GMT Expires: - "0" Pragma: @@ -467,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 13480595-28e9-46f9-5b11-a01a52a8b743 + - 1982c445-9005-4288-7fc8-0e0e76dd43af X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.454982ms + duration: 373.93003ms - id: 7 request: proto: HTTP/1.1 @@ -490,10 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cfe4b45-4e09-ae0f-788a-0d23e6ff5976 + - 2d2cbabd-6dc9-e872-14ca-19d86780af12 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:15:14 GMT + - Tue, 01 Aug 2023 12:28:46 GMT Expires: - "0" Location: @@ -530,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -539,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1b912f0c-cab3-4f32-51a4-8664486ade27 + - beb2c6b8-bb83-4f1a-4641-c2924b4debfa X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 217.759454ms + duration: 203.825012ms - id: 8 request: proto: "" @@ -564,10 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cfe4b45-4e09-ae0f-788a-0d23e6ff5976 + - 2d2cbabd-6dc9-e872-14ca-19d86780af12 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -586,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:15 GMT + - Tue, 01 Aug 2023 12:28:47 GMT Expires: - "0" Pragma: @@ -608,36 +636,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - eeb04b84-37b9-4743-650d-8634aa2705e1 + - db7b0458-c0ac-47c1-48fb-60df8a59e731 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 178.800974ms + duration: 310.059685ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a927675e-ae54-e0e8-80c4-8a82bef5f931 + - 33e421ad-da59-5fa9-01f9-54ad06009ee7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -648,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:16 GMT + - Tue, 01 Aug 2023 12:28:47 GMT Expires: - "0" Pragma: @@ -673,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d5ee1b32-582c-45b6-4772-7b1a5bd340fd + - 0837d168-5e89-48b2-5787-2e4e5bee4007 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 478.634428ms + duration: 251.744812ms - id: 10 request: proto: HTTP/1.1 @@ -696,10 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 49b09883-97d8-c91a-2930-d3dd19b8fe61 + - 4116bf30-34e4-d2b1-b800-58f2cbe81f7c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -723,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:15:16 GMT + - Tue, 01 Aug 2023 12:28:47 GMT Expires: - "0" Location: @@ -736,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -745,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 69d60d29-243e-4d7e-717f-2031a4a818ad + - dde59df1-8bef-425a-673c-ee0bb75ad1e2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 234.712225ms + duration: 196.470607ms - id: 11 request: proto: "" @@ -770,10 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 49b09883-97d8-c91a-2930-d3dd19b8fe61 + - 4116bf30-34e4-d2b1-b800-58f2cbe81f7c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -792,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:17 GMT + - Tue, 01 Aug 2023 12:28:47 GMT Expires: - "0" Pragma: @@ -814,36 +852,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - c22ccb42-94b1-46c6-4ee4-cc57bb134ce5 + - 4dde8f38-6100-4534-5876-9d41fc6967c7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 202.180642ms + duration: 119.903347ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 81659499-ed87-81e8-e6db-36f1b9ad3a5b + - 50fd9808-b05a-4a43-ae8b-6161645ab506 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -854,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:18 GMT + - Tue, 01 Aug 2023 12:28:48 GMT Expires: - "0" Pragma: @@ -879,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 75360ce4-0424-48da-7104-e08a4e2daac4 + - 09ddcbf0-3861-41e3-7f72-b62491bf6dc1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 493.34547ms + duration: 316.985693ms - id: 13 request: proto: HTTP/1.1 @@ -902,10 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 09ade816-30bd-296e-2ef2-391b8dff0133 + - 3d7a52ee-c82a-1fc3-fbcc-7e864d9a56d7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -929,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:15:18 GMT + - Tue, 01 Aug 2023 12:28:48 GMT Expires: - "0" Location: @@ -942,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -951,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9128e074-3ab0-4ad9-4bd1-8422d84035de + - 6a3a2848-0c83-4cc6-6302-e0030152eb13 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 266.220489ms + duration: 175.42158ms - id: 14 request: proto: "" @@ -976,10 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 09ade816-30bd-296e-2ef2-391b8dff0133 + - 3d7a52ee-c82a-1fc3-fbcc-7e864d9a56d7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -998,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}]' + body: '[{"name":"terraformint-platform","originKey":"terraformint-platform","typeOfTrust":"Platform","status":"active","description":"Custom Platform Identity Provider","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":null,"availableForUserLogon":null,"createShadowUsersDuringLogon":null,"sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":true},{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":"terraformint","protocol":"OpenID Connect","readOnly":false},{"name":"sap.default","originKey":"sap.default","typeOfTrust":"Application","status":"active","description":null,"identityProvider":null,"domain":null,"linkTextForUserLogon":"Default Identity Provider","availableForUserLogon":"true","createShadowUsersDuringLogon":"false","sapBtpCli":"accounts","protocol":"OpenID Connect","readOnly":false}]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:19 GMT + - Tue, 01 Aug 2023 12:28:48 GMT Expires: - "0" Pragma: @@ -1020,36 +1068,40 @@ interactions: - application/json X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ac25be1f-4ac2-428d-7c1a-d3fc712664ad + - 3debcb34-e11f-414c-7c86-affda767b775 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 146.144706ms + duration: 238.43051ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2a985503-bbe0-064e-1277-ae4078b6514f + - 8b5b756a-92a5-a01d-35bf-b4cb177dcb27 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1060,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:20 GMT + - Tue, 01 Aug 2023 12:28:49 GMT Expires: - "0" Pragma: @@ -1085,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9145b06f-79b9-4a74-66d8-5f12505fbda3 + - d32d9626-4260-4b19-5734-342331404aec X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 535.577686ms + duration: 244.993391ms diff --git a/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_not_existing.yaml b/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_not_existing.yaml index f476d531..cf530ed7 100644 --- a/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_not_existing.yaml +++ b/internal/provider/fixtures/datasource_subaccount_trust_configurations.subaccount_not_existing.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3219ebbb-d637-f508-77bb-72eb40a82f21 + - f375d121-336f-41b3-43e4-611dc4edb2e1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 16:15:21 GMT + - Tue, 01 Aug 2023 12:28:49 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 24c4f4f3-a81e-4615-763c-800c05cbeb9c + - a92ba265-aa96-4e0e-7d66-f0dfb3c4a0b6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 396.699434ms + duration: 280.96807ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ea07d452-04b0-a878-0dd2-6095560a0f23 + - fa4ac6a7-3f40-5090-1cc2-26fb2f4e97f7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 16:15:21 GMT + - Tue, 01 Aug 2023 12:28:49 GMT Expires: - "0" Pragma: @@ -116,6 +120,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Server-Message: @@ -123,9 +129,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2f404398-883b-437e-7648-a1a2aa8c2f54 + - 2cb11402-2799-4871-52a6-c6932ce01670 X-Xss-Protection: - "0" status: 404 Not Found code: 404 - duration: 273.844655ms + duration: 197.135397ms diff --git a/internal/provider/fixtures/datasource_subaccount_user.yaml b/internal/provider/fixtures/datasource_subaccount_user.yaml index 5645b70f..b6002524 100644 --- a/internal/provider/fixtures/datasource_subaccount_user.yaml +++ b/internal/provider/fixtures/datasource_subaccount_user.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1454aa2f-3a52-08be-a673-8df89df3b11e + - b944588c-1d7c-65e1-25b9-e8a2e2c37974 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:46 GMT + - Tue, 01 Aug 2023 13:01:08 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 984bb6c1-1c67-4c34-457a-1642cc610a90 + - d0e67a7c-5cf4-46fa-6da6-6a6a8acff7f4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 727.172022ms + duration: 601.421621ms - id: 1 request: proto: HTTP/1.1 @@ -73,13 +75,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 340c5c7f-50c8-142f-4e2f-88b0f40accca + - cd9c36f9-1298-3955-9d76-a1c7385de1f3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -103,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 31 May 2023 09:44:47 GMT + - Tue, 01 Aug 2023 13:01:08 GMT Expires: - "0" Location: @@ -116,21 +122,23 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Frame-Options: - DENY X-Id-Token: - redacted X-Vcap-Request-Id: - - 3c96d6e3-9ee7-4780-5393-0324db93ad91 + - 907a0b4a-a9d5-4245-51cb-2a53ec610059 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 299.118135ms + duration: 236.9224ms - id: 2 request: proto: "" @@ -143,21 +151,25 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 340c5c7f-50c8-142f-4e2f-88b0f40accca + - cd9c36f9-1298-3955-9d76-a1c7385de1f3 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Id-Token: - redacted url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/user?get @@ -170,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"de350a51-fa8f-4bdf-bd75-79179b846911","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"5381d6a4-d67f-45b1-93a0-624876f74d03","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":20,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:47 GMT + - Tue, 01 Aug 2023 13:01:08 GMT Expires: - "0" Pragma: @@ -192,36 +204,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 46e22ef0-6681-4966-696c-d410f07fd92c + - ccf7f458-22a9-4547-41d9-b610a88c58c8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 224.252289ms + duration: 256.507402ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3dfe5412-d0a1-2af3-3fa1-b527dd799a19 + - 599d2746-c6a3-4986-2d61-aa7b9b5a25e7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -232,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:48 GMT + - Tue, 01 Aug 2023 13:01:09 GMT Expires: - "0" Pragma: @@ -257,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a53bde57-51af-472c-78c8-8e40fd5a9987 + - 138edd1e-2230-43d4-7c43-8e7a52f2a1e0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 507.175363ms + duration: 516.415138ms - id: 4 request: proto: HTTP/1.1 @@ -275,13 +291,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97abdbe4-9b08-df0a-f673-e06c1cb59452 + - ff3d4fd1-24ca-59ef-078b-997df0f15854 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -305,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 31 May 2023 09:44:49 GMT + - Tue, 01 Aug 2023 13:01:09 GMT Expires: - "0" Location: @@ -318,21 +338,23 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Frame-Options: - DENY X-Id-Token: - redacted X-Vcap-Request-Id: - - 57e5b0fc-a3b5-4352-46af-f7be53c31b25 + - dc2001ac-19b1-4179-402c-caf26144c445 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 193.971626ms + duration: 416.718853ms - id: 5 request: proto: "" @@ -345,21 +367,25 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97abdbe4-9b08-df0a-f673-e06c1cb59452 + - ff3d4fd1-24ca-59ef-078b-997df0f15854 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Id-Token: - redacted url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/user?get @@ -372,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"de350a51-fa8f-4bdf-bd75-79179b846911","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"5381d6a4-d67f-45b1-93a0-624876f74d03","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":20,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:49 GMT + - Tue, 01 Aug 2023 13:01:09 GMT Expires: - "0" Pragma: @@ -394,36 +420,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 75b1d852-5926-4f15-65cc-3804e2a7d193 + - 88368b63-7cfd-46ab-7522-18f2b2b09677 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 154.013336ms + duration: 240.304451ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fe5eac85-ff12-b8a7-32f6-79b4f92d126b + - 1ae60648-86a6-b37c-55c2-d78fb10a5768 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:50 GMT + - Tue, 01 Aug 2023 13:01:10 GMT Expires: - "0" Pragma: @@ -459,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a6d13b83-90cf-4610-5d73-1d08931809fd + - a7f2628c-8abc-4310-6e3f-9382b10d5864 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 457.692977ms + duration: 384.270157ms - id: 7 request: proto: HTTP/1.1 @@ -477,13 +507,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 87345467-9f50-4dcd-8206-55d33738765f + - 0546958a-8143-ab00-3891-d9cf2690b057 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -507,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 31 May 2023 09:44:51 GMT + - Tue, 01 Aug 2023 13:01:11 GMT Expires: - "0" Location: @@ -520,21 +554,23 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Frame-Options: - DENY X-Id-Token: - redacted X-Vcap-Request-Id: - - e04b1a18-8fad-4951-5afd-d59b62d22851 + - 3817ce48-02c1-4062-40f9-d6d131a03085 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 200.305596ms + duration: 413.3168ms - id: 8 request: proto: "" @@ -547,21 +583,25 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 87345467-9f50-4dcd-8206-55d33738765f + - 0546958a-8143-ab00-3891-d9cf2690b057 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Id-Token: - redacted url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/user?get @@ -574,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"de350a51-fa8f-4bdf-bd75-79179b846911","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"5381d6a4-d67f-45b1-93a0-624876f74d03","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":20,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:51 GMT + - Tue, 01 Aug 2023 13:01:11 GMT Expires: - "0" Pragma: @@ -596,36 +636,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - b7576892-1b90-4791-42de-a527ccf87888 + - 20b4789f-016d-42ac-4c8b-782ea573983a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 198.337265ms + duration: 205.061812ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ef04f084-9453-0f86-8e84-c391bf99ae8e + - 94426b76-896b-bbd5-ddcf-f08ba398381d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -636,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:52 GMT + - Tue, 01 Aug 2023 13:01:11 GMT Expires: - "0" Pragma: @@ -661,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3d07cf81-90da-4237-5c07-4fa6495a33aa + - c353663b-ed31-4365-6b2e-d33f4e212330 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 477.379614ms + duration: 289.260595ms - id: 10 request: proto: HTTP/1.1 @@ -679,13 +723,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cd375476-4f15-7834-7283-c3feabcb9ac7 + - 8fa622e0-b509-00fb-4abc-08329359eca7 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -709,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 31 May 2023 09:44:53 GMT + - Tue, 01 Aug 2023 13:01:11 GMT Expires: - "0" Location: @@ -722,21 +770,23 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Frame-Options: - DENY X-Id-Token: - redacted X-Vcap-Request-Id: - - 95607160-7ea5-48c5-5904-6f591520da15 + - f774a74a-7989-4da5-64fc-da9652649f16 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 203.387663ms + duration: 169.03277ms - id: 11 request: proto: "" @@ -749,21 +799,25 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cd375476-4f15-7834-7283-c3feabcb9ac7 + - 8fa622e0-b509-00fb-4abc-08329359eca7 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Id-Token: - redacted url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/user?get @@ -776,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"de350a51-fa8f-4bdf-bd75-79179b846911","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"5381d6a4-d67f-45b1-93a0-624876f74d03","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":20,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:53 GMT + - Tue, 01 Aug 2023 13:01:12 GMT Expires: - "0" Pragma: @@ -798,36 +852,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 74d848b4-0511-48cf-72ce-227a3d69620b + - 00a68b1d-3e34-421f-7c76-116da98126c1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 200.352375ms + duration: 235.356806ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8cabb25a-bc7d-43a1-3495-827d918c1da0 + - 6b0e7335-a7e4-ded9-b8b6-f092c76e87f8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -838,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:54 GMT + - Tue, 01 Aug 2023 13:01:12 GMT Expires: - "0" Pragma: @@ -863,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 39fca421-6039-4cfa-7aa6-0b67ab9d9258 + - bdb50603-aa03-4c6c-6b00-3a9721106169 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 516.156829ms + duration: 239.103054ms - id: 13 request: proto: HTTP/1.1 @@ -881,13 +939,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 92f4920f-71e3-2732-8f49-9cde9d67c396 + - 72cfce75-865b-abcd-2839-1b17175493a9 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -911,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 31 May 2023 09:44:55 GMT + - Tue, 01 Aug 2023 13:01:12 GMT Expires: - "0" Location: @@ -924,21 +986,23 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Frame-Options: - DENY X-Id-Token: - redacted X-Vcap-Request-Id: - - 53497192-1fd7-40c4-7606-7fd9e8d392ae + - fcbf2fd7-f634-4f52-73c6-3b861ae5ecb7 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 223.648636ms + duration: 275.60462ms - id: 14 request: proto: "" @@ -951,21 +1015,25 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"origin":"sap.default","subaccount":"5381d6a4-d67f-45b1-93a0-624876f74d03","userName":"jenny.doe@test.com"}} + {"paramValues":{"origin":"sap.default","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","userName":"jenny.doe@test.com"}} form: {} headers: Content-Type: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 92f4920f-71e3-2732-8f49-9cde9d67c396 + - 72cfce75-865b-abcd-2839-1b17175493a9 + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: - redacted X-Cpcli-Subdomain: - - integration-test-sa-dtsaun9p + - integration-test-acc-static-b8xxozer X-Id-Token: - redacted url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/user?get @@ -978,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"de350a51-fa8f-4bdf-bd75-79179b846911","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"5381d6a4-d67f-45b1-93a0-624876f74d03","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":0,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":20,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:55 GMT + - Tue, 01 Aug 2023 13:01:13 GMT Expires: - "0" Pragma: @@ -1000,36 +1068,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ca70244e-d2df-43db-5cf7-d591bf250c98 + - e9a64fe6-5002-4c42-5990-1346f0366c8a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 156.680222ms + duration: 250.334794ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 38bfd1a4-b9f7-3985-40bc-bc479eca2df6 + - 9bca47c0-c3d5-c55e-25fb-b5fc09b77ef3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1040,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Wed, 31 May 2023 09:44:56 GMT + - Tue, 01 Aug 2023 13:01:13 GMT Expires: - "0" Pragma: @@ -1065,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 962d414c-fdc9-4159-7bf4-1fefcdcd9a82 + - d84279fa-7d79-4571-7cfa-d62de4db7769 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 531.144919ms + duration: 356.273157ms diff --git a/internal/provider/fixtures/datasource_subaccount_users.custom_idp.yaml b/internal/provider/fixtures/datasource_subaccount_users.custom_idp.yaml index be4a8cf0..7222a7c8 100644 --- a/internal/provider/fixtures/datasource_subaccount_users.custom_idp.yaml +++ b/internal/provider/fixtures/datasource_subaccount_users.custom_idp.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4e288097-d10d-46f9-bae1-3f672546b5fa + - 2e218025-1b01-ccc2-9c1f-f7cd9a361c11 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:14 GMT + - Tue, 01 Aug 2023 12:31:22 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 730abf81-12af-4e0f-6bbd-c86ca1823fb7 + - 20057f09-23da-4cb0-6e54-37a14db23e09 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 952.786088ms + duration: 217.667065ms - id: 1 request: proto: HTTP/1.1 @@ -81,11 +81,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 49aec669-056d-3e42-57ba-e83c718cc664 + - 3a800f23-fdab-9c53-da10-52d3d47a9a94 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -109,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 06 Jun 2023 14:39:16 GMT + - Tue, 01 Aug 2023 12:31:22 GMT Expires: - "0" Location: @@ -122,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -131,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0dad206a-53c6-45a3-7b70-2df873ce3c76 + - 17064b73-789a-4420-4451-401fa7e22367 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 287.261924ms + duration: 186.818883ms - id: 2 request: proto: "" @@ -157,11 +159,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 49aec669-056d-3e42-57ba-e83c718cc664 + - 3a800f23-fdab-9c53-da10-52d3d47a9a94 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -180,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:16 GMT + - Tue, 01 Aug 2023 12:31:22 GMT Expires: - "0" Pragma: @@ -202,38 +204,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30c62a8d-9800-48d1-73b6-633d92015e3c + - 7c5c0dce-7eeb-4863-6563-c19873f04226 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 285.660721ms + duration: 117.839194ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8420b4ba-c38e-18c3-ff12-f0271ae5259d + - 2c36f6c0-c6ce-801e-8c1d-64778f40d4d5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -244,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:17 GMT + - Tue, 01 Aug 2023 12:31:22 GMT Expires: - "0" Pragma: @@ -269,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1480eb37-cf05-4cdc-7049-8eae4fc799cf + - 17e552fc-fa02-41b6-5901-de118ee13215 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.73756ms + duration: 318.236579ms - id: 4 request: proto: HTTP/1.1 @@ -293,11 +297,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 65179e10-f396-e1b1-f4b2-a07d4dc72612 + - bdfd64e2-7b1a-fb38-8051-d30d789b7250 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -321,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 06 Jun 2023 14:39:18 GMT + - Tue, 01 Aug 2023 12:31:23 GMT Expires: - "0" Location: @@ -334,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -343,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 171a4353-ffd0-460d-66c1-a44651bb621b + - 57569ad0-47dc-47ca-79a5-d44cb0af1a6d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 231.33318ms + duration: 187.400506ms - id: 5 request: proto: "" @@ -369,11 +375,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 65179e10-f396-e1b1-f4b2-a07d4dc72612 + - bdfd64e2-7b1a-fb38-8051-d30d789b7250 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -392,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:18 GMT + - Tue, 01 Aug 2023 12:31:23 GMT Expires: - "0" Pragma: @@ -414,38 +420,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5229b543-3c40-43b7-5e07-81daa1d33611 + - f905b2e1-da58-43ba-65f1-da5673c9e13b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 128.139997ms + duration: 95.246219ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 34d2c0c0-f8f8-761c-dbc8-10b7050c2c52 + - c4890257-f7df-e8de-8fc0-3586449805a8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -456,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:19 GMT + - Tue, 01 Aug 2023 12:31:23 GMT Expires: - "0" Pragma: @@ -481,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 55bee3cd-f742-48ba-6a12-0bf565051078 + - 10e33c28-eb92-4f78-770d-9a56c25dc750 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 326.814809ms + duration: 237.054306ms - id: 7 request: proto: HTTP/1.1 @@ -505,11 +513,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c4263a1-7aa5-5696-b38a-458403c331de + - 1f446c5a-7945-ed98-fb20-f085e99fa8c6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -533,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 06 Jun 2023 14:39:20 GMT + - Tue, 01 Aug 2023 12:31:23 GMT Expires: - "0" Location: @@ -546,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -555,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 3e3a53e5-9370-42dd-6f2c-04a47eed2fdd + - e22bc349-54b2-428f-4005-18926b721520 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 158.273936ms + duration: 195.951854ms - id: 8 request: proto: "" @@ -581,11 +591,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c4263a1-7aa5-5696-b38a-458403c331de + - 1f446c5a-7945-ed98-fb20-f085e99fa8c6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -604,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:20 GMT + - Tue, 01 Aug 2023 12:31:24 GMT Expires: - "0" Pragma: @@ -626,38 +636,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - d4d95afc-2786-4b48-50f3-910d2ffabb89 + - 60798a63-2ab1-4fff-791d-5654883d6a81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 105.16976ms + duration: 106.331384ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 92727e7d-8945-93b3-c3ae-3f5c76f452fa + - ec7f9ee2-9dea-6553-739b-1a67ddb581fb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -668,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:21 GMT + - Tue, 01 Aug 2023 12:31:24 GMT Expires: - "0" Pragma: @@ -693,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 45415cba-e790-4a60-7fc7-d3aa01026e3d + - 3e8594f2-c065-4988-5c77-01cfda4c25a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 448.416241ms + duration: 245.160209ms - id: 10 request: proto: HTTP/1.1 @@ -717,11 +729,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2fd4889c-ae9f-df6c-aba6-1e1163f83071 + - d2efe59f-c1a4-1eb9-3ac4-dac8487de137 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -745,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 06 Jun 2023 14:39:22 GMT + - Tue, 01 Aug 2023 12:31:24 GMT Expires: - "0" Location: @@ -758,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -767,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 77260751-1430-469b-6851-78b4e8a86312 + - 19e7cb8c-90b4-4c34-51fd-6d682462de28 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 325.747474ms + duration: 155.479344ms - id: 11 request: proto: "" @@ -793,11 +807,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2fd4889c-ae9f-df6c-aba6-1e1163f83071 + - d2efe59f-c1a4-1eb9-3ac4-dac8487de137 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -816,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:22 GMT + - Tue, 01 Aug 2023 12:31:24 GMT Expires: - "0" Pragma: @@ -838,38 +852,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - af794d08-7718-4276-6d9c-799d3321743e + - 55f163a6-f718-4322-510c-1962af53cd44 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 197.689643ms + duration: 90.379913ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e63ceec4-8a14-524a-64e1-0638dc6bd7e2 + - 2ab4d216-fb05-82fe-1abf-60c0b3d7e4d5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -880,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:23 GMT + - Tue, 01 Aug 2023 12:31:25 GMT Expires: - "0" Pragma: @@ -905,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a2a23038-ba0f-4052-4cf8-0f0f12a33bd0 + - 1f3d79d8-6bc3-444b-606e-1af8aa0fc168 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 502.55132ms + duration: 237.503071ms - id: 13 request: proto: HTTP/1.1 @@ -929,11 +945,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8e446087-2b02-92af-46f0-29708e826acf + - 18a53f71-4b55-ac33-897b-f901422a78f1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -957,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 06 Jun 2023 14:39:24 GMT + - Tue, 01 Aug 2023 12:31:25 GMT Expires: - "0" Location: @@ -970,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -979,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 28503c00-02f5-4580-440a-eb00e56b759d + - 451e43e2-eb7d-4e41-41b3-8081481956a3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 226.416442ms + duration: 198.816891ms - id: 14 request: proto: "" @@ -1005,11 +1023,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8e446087-2b02-92af-46f0-29708e826acf + - 18a53f71-4b55-ac33-897b-f901422a78f1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1028,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["john.doe@test.com"]' + body: '["john.doe@int.test","john.doe+1@int.test","john.doe@test.com"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:24 GMT + - Tue, 01 Aug 2023 12:31:25 GMT Expires: - "0" Pragma: @@ -1050,38 +1068,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b885de8-91c7-462d-4390-6a46f385ce6b + - 6ceb85c4-386c-4051-740f-8046e526bf0a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 281.530106ms + duration: 97.341622ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b5f78a40-38fd-9b21-9993-17f3aef37110 + - 19af0b3b-29ff-e03f-0d9e-d0cfe3c0bb2d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1092,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Tue, 06 Jun 2023 14:39:26 GMT + - Tue, 01 Aug 2023 12:31:25 GMT Expires: - "0" Pragma: @@ -1117,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 009fd2c6-1026-4574-7412-a771b0154866 + - 27f684f8-f68f-43a4-4357-84d0bc658319 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 448.811956ms + duration: 300.457402ms diff --git a/internal/provider/fixtures/datasource_subaccount_users.default_idp.yaml b/internal/provider/fixtures/datasource_subaccount_users.default_idp.yaml index c57c35ba..6ab69eef 100644 --- a/internal/provider/fixtures/datasource_subaccount_users.default_idp.yaml +++ b/internal/provider/fixtures/datasource_subaccount_users.default_idp.yaml @@ -6,20 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f71d2707-5060-612f-2d74-a5455deb24f1 + - bcba0fb6-b348-0424-1038-1b6556f65952 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -30,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:26 GMT + - Tue, 01 Aug 2023 12:31:17 GMT Expires: - "0" Pragma: @@ -55,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 46eb370e-a59c-47cd-4de4-00f289c5cb43 + - e290d73c-214d-4163-43e4-e761b13f64f5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 515.11777ms + duration: 513.281577ms - id: 1 request: proto: HTTP/1.1 @@ -78,10 +80,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3bd093fc-2a7d-ed03-ec47-ddf8c5d9d880 + - 84b9a1fe-4607-df55-87a4-f93e289a2f9f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -105,7 +109,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 13:51:27 GMT + - Tue, 01 Aug 2023 12:31:17 GMT Expires: - "0" Location: @@ -118,6 +122,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -127,12 +133,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7b181e93-cefe-4d6f-5f3e-85a0f9c2992a + - 82b54cba-ef6f-4b6b-46df-a7012bdc78c0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 235.996737ms + duration: 246.989305ms - id: 2 request: proto: "" @@ -152,10 +158,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3bd093fc-2a7d-ed03-ec47-ddf8c5d9d880 + - 84b9a1fe-4607-df55-87a4-f93e289a2f9f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -174,14 +182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","jenny.doe@test.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:27 GMT + - Tue, 01 Aug 2023 12:31:17 GMT Expires: - "0" Pragma: @@ -196,36 +204,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - e4f9d844-6208-42f1-46a1-4fa0d9e42deb + - 86c1cf14-f99e-42c0-7e49-7893219ea37b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 181.403451ms + duration: 229.885908ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9a256364-ad6e-bccc-bd86-33978425134c + - a2666063-eccf-ba73-a6cf-f77b78e3b3d2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -236,18 +248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:28 GMT + - Tue, 01 Aug 2023 12:31:18 GMT Expires: - "0" Pragma: @@ -261,12 +273,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 83886963-5ee9-42d3-76d2-27f1f3d0b45f + - 4ced1d49-dffe-4e56-6341-5f0bf4407300 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 537.172174ms + duration: 388.613695ms - id: 4 request: proto: HTTP/1.1 @@ -284,10 +296,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c4f3eed4-12a9-1d7c-dbe0-1eba77b8f6b0 + - c9067699-3926-30d3-c224-5ad752072981 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -311,7 +325,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 13:51:29 GMT + - Tue, 01 Aug 2023 12:31:18 GMT Expires: - "0" Location: @@ -324,6 +338,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -333,12 +349,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 29dd173a-29d8-463b-78de-4ad6303f2a95 + - 14baf2b4-fe21-4cfb-78b7-d95762db3c27 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 321.423038ms + duration: 241.423443ms - id: 5 request: proto: "" @@ -358,10 +374,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c4f3eed4-12a9-1d7c-dbe0-1eba77b8f6b0 + - c9067699-3926-30d3-c224-5ad752072981 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -380,14 +398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","jenny.doe@test.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:29 GMT + - Tue, 01 Aug 2023 12:31:18 GMT Expires: - "0" Pragma: @@ -402,36 +420,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 109376de-fb49-4c37-4117-bc487b0fe066 + - f70bca48-c7c0-4428-48f0-d08b59619a5d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 157.266561ms + duration: 116.194217ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed4b72a9-3be2-1c7b-613d-b4cf68bfdf94 + - eab92739-432a-799b-bdb0-8cfef736f20e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -442,18 +464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:30 GMT + - Tue, 01 Aug 2023 12:31:19 GMT Expires: - "0" Pragma: @@ -467,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8888e9a0-7d4e-4ebc-6e93-d1c08b1ae36b + - f88d428e-1c6d-4232-436f-ac31f5cb63a0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 521.401068ms + duration: 318.982383ms - id: 7 request: proto: HTTP/1.1 @@ -490,10 +512,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c8b7582c-ec37-ffdb-4264-345590a6c277 + - 2b730599-7b47-c13b-a57b-7f5b008f10b3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -517,7 +541,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 13:51:31 GMT + - Tue, 01 Aug 2023 12:31:19 GMT Expires: - "0" Location: @@ -530,6 +554,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -539,12 +565,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1b719277-be5a-4365-4288-9e862b70ef8c + - 5fbdd9c7-efb8-43b8-4074-54d7cd72e1f4 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 193.910018ms + duration: 201.324724ms - id: 8 request: proto: "" @@ -564,10 +590,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c8b7582c-ec37-ffdb-4264-345590a6c277 + - 2b730599-7b47-c13b-a57b-7f5b008f10b3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -586,14 +614,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","jenny.doe@test.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:31 GMT + - Tue, 01 Aug 2023 12:31:19 GMT Expires: - "0" Pragma: @@ -608,36 +636,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 95a8a1be-9ad1-4fbe-5cd5-04b78de542ea + - c1ed98c1-8ada-4c0d-51a6-616fec0bcb69 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 181.394137ms + duration: 114.931405ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 446c6948-6e4d-7fa0-d7db-53327de355b4 + - 3ab95536-9152-7386-8a63-b84d0868a6a5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -648,18 +680,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:32 GMT + - Tue, 01 Aug 2023 12:31:19 GMT Expires: - "0" Pragma: @@ -673,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c6943490-2657-4bae-757c-ced0da2b86dd + - 5d599ab9-edad-4629-42f4-b77cb7a748b8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 540.72875ms + duration: 238.12124ms - id: 10 request: proto: HTTP/1.1 @@ -696,10 +728,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c052c6a-2436-1003-fd6a-fae713f321c1 + - 35d4c201-e395-bec5-1b57-922ffbdbb377 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -723,7 +757,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 13:51:33 GMT + - Tue, 01 Aug 2023 12:31:20 GMT Expires: - "0" Location: @@ -736,6 +770,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -745,12 +781,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 29605d77-b9b3-47eb-57c9-bdc524c39eab + - eb52827b-a55e-41f3-4f59-786820d0c738 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 227.557222ms + duration: 299.257109ms - id: 11 request: proto: "" @@ -770,10 +806,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c052c6a-2436-1003-fd6a-fae713f321c1 + - 35d4c201-e395-bec5-1b57-922ffbdbb377 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -792,14 +830,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","jenny.doe@test.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:34 GMT + - Tue, 01 Aug 2023 12:31:20 GMT Expires: - "0" Pragma: @@ -814,36 +852,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - ef4fce5e-be1f-44a9-459c-b55fd362adba + - a1eb7b14-bf46-4db3-5652-0e8a046a0836 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 166.733717ms + duration: 99.510311ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7c393630-510a-bf98-ca83-cc8b993f3339 + - dfb02e38-a65c-7654-5fab-5e81b4221b03 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -854,18 +896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:34 GMT + - Tue, 01 Aug 2023 12:31:20 GMT Expires: - "0" Pragma: @@ -879,12 +921,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d0da5b9d-91ab-42ea-44ff-473fcaedd6d8 + - ec4e3699-2cc8-4e72-6681-b7e0f7a13824 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 462.486883ms + duration: 295.588525ms - id: 13 request: proto: HTTP/1.1 @@ -902,10 +944,12 @@ interactions: headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 006a182d-d1cc-efce-9a95-927d2acddb4b + - db4779b5-4db0-9572-6ab2-a4ad36cded46 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -929,7 +973,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 01 Jun 2023 13:51:35 GMT + - Tue, 01 Aug 2023 12:31:20 GMT Expires: - "0" Location: @@ -942,6 +986,8 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Subdomain: @@ -951,12 +997,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1ac9f0c8-2825-4449-6865-b51241b9a2ce + - 7e71560c-7d0b-4b38-753c-cff598982eef X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 195.789504ms + duration: 189.518964ms - id: 14 request: proto: "" @@ -976,10 +1022,12 @@ interactions: - application/json Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/user?list + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 006a182d-d1cc-efce-9a95-927d2acddb4b + - db4779b5-4db0-9572-6ab2-a4ad36cded46 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -998,14 +1046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '["christian.volk@sap.com","jenny.doe@test.com","john.doe@int.test"]' + body: '["john.doe+1@int.test","john.doe+2@int.test","john.doe@int.test","john.doe+3@int.test","jenny.doe@test.com","john.doe+4@int.test"]' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:35 GMT + - Tue, 01 Aug 2023 12:31:21 GMT Expires: - "0" Pragma: @@ -1020,36 +1068,40 @@ interactions: - application/json;charset=utf-8 X-Cpcli-Backend-Status: - "200" + X-Cpcli-Refreshtoken: + - redacted X-Cpcli-Replacementrefreshtoken: - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - 58111f7e-0f2b-4db3-707b-08bfbc6b18f3 + - a7fcdcaf-5845-49df-6738-420f9b92c376 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 170.078277ms + duration: 166.180571ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9b82318a-df3d-079a-5bb4-8572ff8cb459 + - 153ee94f-e564-4b16-f258-271889f4a6a5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1060,18 +1112,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 139 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "139" + - "162" Content-Type: - application/json Date: - - Thu, 01 Jun 2023 13:51:36 GMT + - Tue, 01 Aug 2023 12:31:21 GMT Expires: - "0" Pragma: @@ -1085,9 +1137,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7fd843df-28dd-41c0-47ac-d84fef197677 + - 0d48a7ca-93d9-4e9e-616e-f3fc93a18de5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 533.754265ms + duration: 240.489386ms diff --git a/internal/provider/fixtures/datasource_subaccounts.all.yaml b/internal/provider/fixtures/datasource_subaccounts.all.yaml index 1d73fe24..304a2ded 100644 --- a/internal/provider/fixtures/datasource_subaccounts.all.yaml +++ b/internal/provider/fixtures/datasource_subaccounts.all.yaml @@ -6,14 +6,14 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2e74acd1-76fa-e8c8-3008-437af253900f + - 1efeac78-d837-2182-de9d-553a217089ae X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:44 GMT + - Tue, 01 Aug 2023 12:18:10 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0bafe7a0-5695-47ea-573b-a243cdac417d + - 09017cec-be69-4f33-75c0-fc78a4596a99 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 791.8066ms + duration: 639.016608ms - id: 1 request: proto: HTTP/1.1 @@ -83,9 +83,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a3195add-a241-f8b7-2b6a-e2654d9dd8f9 + - 665ce0cd-902b-93c9-a572-ae3eec99b524 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -102,14 +102,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"christian.volk@sap.com","modifiedDate":"May 15, 2023, 11:51:15 AM"}]}' + body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 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+2@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:45 GMT + - Tue, 01 Aug 2023 12:18:10 GMT Expires: - "0" Pragma: @@ -131,25 +131,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b4da8748-c124-4bb8-48b8-186454215c03 + - 5be7c552-18cb-4d73-4414-50f2b3020a9f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 541.578ms + duration: 326.870254ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -157,7 +157,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bae54c4a-6975-7921-6308-8efa1fc07fb7 + - 112f3465-f5d1-8189-21da-d9173a8e847d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -168,18 +168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:47 GMT + - Tue, 01 Aug 2023 12:18:11 GMT Expires: - "0" Pragma: @@ -193,12 +193,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6b00b319-81df-47f0-490f-83926ad6ede9 + - 80b44760-0277-424d-4b23-25a458c41f7b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 625.6801ms + duration: 508.305936ms - id: 3 request: proto: HTTP/1.1 @@ -219,9 +219,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4d6ae618-41bb-1d9e-be39-27b6166742b7 + - e7d19564-fe93-2cdd-5786-24cde6c594af X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -238,14 +238,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"christian.volk@sap.com","modifiedDate":"May 15, 2023, 11:51:15 AM"}]}' + body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 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+2@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:48 GMT + - Tue, 01 Aug 2023 12:18:11 GMT Expires: - "0" Pragma: @@ -267,25 +267,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9c934ff6-f0ac-4087-7ffb-49869d90981e + - b5011826-69a7-44bc-4ff0-34e04c800314 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 405.0273ms + duration: 244.8517ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -293,7 +293,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 361d9435-6928-eebf-a6b2-d2532e88a0fb + - 8cd1a6a4-713a-1961-c1c9-8bd82e6d466b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -304,18 +304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:49 GMT + - Tue, 01 Aug 2023 12:18:12 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b3f7cf0c-5a1a-49f1-42ab-8e8a315d1103 + - fa54bf31-c556-4018-402e-ff88ad5fcba5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.9561ms + duration: 313.444804ms - id: 5 request: proto: HTTP/1.1 @@ -355,9 +355,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4991bbf7-74e7-6d44-116e-7ee2767d389f + - 7f46ef07-b5a5-76c9-dd25-cc58578d9768 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"christian.volk@sap.com","modifiedDate":"May 15, 2023, 11:51:15 AM"}]}' + body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 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+2@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:50 GMT + - Tue, 01 Aug 2023 12:18:12 GMT Expires: - "0" Pragma: @@ -403,25 +403,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43465828-6933-4a5a-4121-741e41caa2fd + - 6bfefcb7-33a7-4efb-6610-83ba64a17b11 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 440.5027ms + duration: 203.551726ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -429,7 +429,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 239dc0ab-7d45-b022-456c-5da95fa02815 + - 02f02365-02c4-248b-4e43-39c712fc4921 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -440,18 +440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:51 GMT + - Tue, 01 Aug 2023 12:18:12 GMT Expires: - "0" Pragma: @@ -465,12 +465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - de8c7c6e-7ba6-4242-7d59-454ce4b19b99 + - a334c151-2b29-4949-5471-ac4e1abb46c9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 530.8904ms + duration: 210.727967ms - id: 7 request: proto: HTTP/1.1 @@ -491,9 +491,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f673afae-6622-a81b-3bb4-7fd6ec8e5a0b + - 98af9b0c-8bdb-1a93-392e-41e52261c910 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -510,14 +510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"christian.volk@sap.com","modifiedDate":"May 15, 2023, 11:51:15 AM"}]}' + body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 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+2@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:51 GMT + - Tue, 01 Aug 2023 12:18:12 GMT Expires: - "0" Pragma: @@ -539,25 +539,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - df3da704-e376-4c83-7275-27d1088405d3 + - 5df0c98d-d90b-4105-641c-f4aeb42e9d39 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 217.9619ms + duration: 213.36563ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -565,7 +565,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 259a3b48-ecdb-d7aa-2f2b-49c29a2044ae + - d1562d18-528f-d7e6-202e-19bdaacf8faa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:52 GMT + - Tue, 01 Aug 2023 12:18:13 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 48b3ca30-6b01-477e-7c02-680d4708ce1d + - 11cfc610-c697-4dce-43d8-b28b905f5f4c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 529.5566ms + duration: 295.828382ms - id: 9 request: proto: HTTP/1.1 @@ -627,9 +627,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d8a295c1-7980-a1c1-f45c-cb66f1bc2fd7 + - f71a5f98-6aab-f94b-692c-dd04c4bdb88f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"christian.volk@sap.com","modifiedDate":"May 15, 2023, 11:51:15 AM"}]}' + body: '{"value":[{"guid":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","technicalName":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","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":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label2","value":""},{"accountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","key":"label1","value":"label value 1"}],"labels":{"label1":["label value 1"],"label2":[]},"createdDate":"May 15, 2023, 11:50:47 AM","createdBy":"john.doe+1@int.test","modifiedDate":"May 15, 2023, 11:51:15 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+2@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"}]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:53 GMT + - Tue, 01 Aug 2023 12:18:13 GMT Expires: - "0" Pragma: @@ -675,25 +675,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5342e5c3-d4d2-4e29-5487-b191fea9385c + - 374446c8-dc25-4bb3-4b24-d4f46ace1197 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 266.9786ms + duration: 239.63503ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -701,7 +701,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a33ca4fd-5c8b-ccf7-5991-9d05c3c89db8 + - 340807e4-35dd-2cb7-c3dd-c1c7abe5868a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Wed, 21 Jun 2023 05:57:54 GMT + - Tue, 01 Aug 2023 12:18:13 GMT Expires: - "0" Pragma: @@ -737,9 +737,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 818b9185-834d-46a5-7598-ae74d14dcd3e + - 2e5433f4-bd90-48ea-53a0-745bb02a28f6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 365.0299ms + duration: 280.282002ms diff --git a/internal/provider/fixtures/datasource_whoami.yaml b/internal/provider/fixtures/datasource_whoami.yaml index 9a81ba56..158c79da 100644 --- a/internal/provider/fixtures/datasource_whoami.yaml +++ b/internal/provider/fixtures/datasource_whoami.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6bed0182-4840-68a1-4fbe-05bb0aed5be2 + - 91fb88b4-0bc7-1d9d-f600-5a3a8995bd5a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:20:30 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 28c30ca5-8602-495d-699c-a692d44c5ad5 + - fe5d15a2-2ebf-4e91-5774-0e5489d7f28b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 920.242308ms + duration: 363.126934ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00001fdf-987f-d0d0-6cd5-21bf11601b37 + - e1518f74-bf3e-55af-dad2-49baf0e73c75 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:20:31 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 74c7cde8-a16b-49e5-49a3-8036bfdc6f2b + - 6f641c9f-85f3-473c-5c95-eba5c2d707b5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 460.473378ms + duration: 257.010387ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 017ea9ae-31f5-0f9c-23e2-b901e4d4401b + - 37d28902-1efa-bc19-4509-e60126b75030 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:20:33 GMT + - Tue, 01 Aug 2023 07:34:11 GMT Expires: - "0" Pragma: @@ -181,33 +181,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 24906853-3fc8-473c-5ed8-bed3a7ef9134 + - 04714d8c-9cbc-4c99-7d65-68c537e23a41 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 496.945656ms + duration: 633.69939ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a6302543-0a04-abca-305c-cbbac757f1f5 + - 93a7444a-91a0-2051-6b3e-9a15b0bf76f4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -218,18 +218,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:20:34 GMT + - Tue, 01 Aug 2023 07:34:11 GMT Expires: - "0" Pragma: @@ -243,33 +243,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fa8c8343-308f-4316-61b7-7f059bcd9c28 + - 4b74b025-04bb-4a18-5cf9-5ae2521a0c2f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 425.000293ms + duration: 444.030546ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 40dede96-aad9-2bd3-6380-117be5e3ae48 + - 6e9a93df-9f3a-df04-0906-cf9bf1b7d793 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -280,18 +280,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:20:35 GMT + - Tue, 01 Aug 2023 07:34:12 GMT Expires: - "0" Pragma: @@ -305,33 +305,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7ff9c884-70f8-490d-4447-e8cd6072757f + - 6a32846e-6562-45cc-5aa2-fbdc74d206fb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 413.582676ms + duration: 180.768129ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.3.9 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4a2d03bc-0778-0d68-0959-1dcd11e2883c + - 2045a785-c527-367c-51b6-c7db4afcdb9f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -342,18 +342,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "143" + - "162" Content-Type: - application/json Date: - - Wed, 07 Jun 2023 13:20:36 GMT + - Tue, 01 Aug 2023 07:34:12 GMT Expires: - "0" Pragma: @@ -367,9 +367,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 955c53d3-6b05-4322-6be3-1f0282385219 + - f11809be-49b0-4bda-61eb-f1b4f8970b50 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.11877ms + duration: 179.224757ms diff --git a/internal/provider/fixtures/resource_directory.yaml b/internal/provider/fixtures/resource_directory.yaml index 766d4c55..6a1c6194 100644 --- a/internal/provider/fixtures/resource_directory.yaml +++ b/internal/provider/fixtures/resource_directory.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 599c2e46-a134-02c2-4e21-9b1d98ec593d + - 57dae58d-6fb2-9c8c-01b6-e41914bdc3ef X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -34,7 +34,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:39 GMT + - Tue, 01 Aug 2023 12:15:15 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6302d4e3-1f0d-4097-68ab-8c95c906f16b + - 205b7773-6f01-49d7-445b-00b48100cc84 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 887.900979ms + duration: 719.261593ms - id: 1 request: proto: HTTP/1.1 @@ -75,7 +75,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -83,7 +83,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 288f1ee2-dfd0-e949-2d1b-632428ea0da5 + - 2f42fe6b-9df0-834b-6d5b-131a8de21f25 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -96,7 +96,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:39 GMT + - Tue, 01 Aug 2023 12:15:16 GMT Expires: - "0" Pragma: @@ -119,12 +119,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e545cc47-35db-4df6-5d6f-fd35fc6921e5 + - 968c2bf2-b19d-4580-70d8-129149f8f22c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 420.351045ms + duration: 363.754708ms - id: 2 request: proto: HTTP/1.1 @@ -137,7 +137,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -145,7 +145,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 88f368a7-7b38-d5a4-0ddb-ab61a16a9dc5 + - d6ae4da8-4b4b-90c1-3080-1fd0ff7d1fa7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,7 +158,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:40 GMT + - Tue, 01 Aug 2023 12:15:16 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eea6df8a-688e-438e-6b7f-c1be4f0f68a4 + - 95d6ece9-34d5-48cf-4cd2-0fdd8d81bd34 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 623.690068ms + duration: 555.503114ms - id: 3 request: proto: HTTP/1.1 @@ -207,9 +207,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c107daa9-2bb6-12a5-1d65-5aa83a1d600d + - 1db4edfe-becb-2664-98b3-a16494d6480b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:40 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:17 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:40 GMT + - Tue, 01 Aug 2023 12:15:17 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f3f4f047-1c9b-4857-4274-9deee7469c5a + - 0b7fa24b-d1ef-44f8-780b-dfc83f5d0f62 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 505.652237ms + duration: 414.125026ms - id: 4 request: proto: HTTP/1.1 @@ -273,7 +273,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + {"paramValues":{"directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -281,9 +281,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac882579-8486-5877-8d18-e391efa20aa7 + - 3b3afaa6-13d6-0b32-e6ef-ad70663e41a4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:40 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:17 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:46 GMT + - Tue, 01 Aug 2023 12:15:22 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a86c273e-ba26-49fc-4e3b-c321236e0881 + - b7cb3f21-308a-4ebd-77b9-e339dfdaf063 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 426.852143ms + duration: 410.417824ms - id: 5 request: proto: HTTP/1.1 @@ -347,7 +347,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -355,7 +355,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 07048108-5320-8fc7-36f2-f422054e9d22 + - 5fb7e82a-c268-4f62-a757-78d6d940f56d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -368,7 +368,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -377,7 +377,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:47 GMT + - Tue, 01 Aug 2023 12:15:23 GMT Expires: - "0" Pragma: @@ -391,12 +391,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c65330d9-98ce-41ba-75c5-9154121861d5 + - bb4e7cc8-4210-49e7-7695-7422f8ff7797 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 533.915509ms + duration: 340.681363ms - id: 6 request: proto: HTTP/1.1 @@ -409,7 +409,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -417,7 +417,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d87bdff1-5e9b-250f-d171-f3e5f4679190 + - 3a615d1e-2582-89c3-7dac-7e22c2e32960 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -430,7 +430,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -439,7 +439,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:47 GMT + - Tue, 01 Aug 2023 12:15:23 GMT Expires: - "0" Pragma: @@ -453,12 +453,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0a248813-bc6a-4d95-58ce-e4b4572f40c0 + - d58b4386-4f09-435a-4707-08fa2437a4be X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 583.252289ms + duration: 444.872135ms - id: 7 request: proto: HTTP/1.1 @@ -471,7 +471,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + {"paramValues":{"directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -479,9 +479,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 38c17f26-ea8a-817d-8ba9-b6b43995ba8a + - 45da87bd-99ca-ab15-7e9d-3d1a727efc81 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -498,14 +498,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:40 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:17 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:48 GMT + - Tue, 01 Aug 2023 12:15:24 GMT Expires: - "0" Pragma: @@ -527,12 +527,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ebb3bb1a-582e-4e92-757a-80970216df00 + - 54fa5bba-46ca-409b-7685-fe57a1832fc7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.183581ms + duration: 334.02803ms - id: 8 request: proto: HTTP/1.1 @@ -545,7 +545,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -553,7 +553,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 858911de-80f6-c54f-1b61-f4b45232a80d + - 0ba50941-1969-4dc2-0c2e-f80679bf23d6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -566,7 +566,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -575,7 +575,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:48 GMT + - Tue, 01 Aug 2023 12:15:24 GMT Expires: - "0" Pragma: @@ -589,12 +589,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4e630fb1-4d58-4f7c-75e8-a31a2a263ce1 + - f3ac344d-7051-4951-670e-c416edd265d6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.743609ms + duration: 395.697261ms - id: 9 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -615,7 +615,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e371ed3d-d660-fb57-7b06-43695aaae594 + - 8e366c25-ac60-6d25-d5c9-80074c68d319 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -628,7 +628,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -637,7 +637,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:49 GMT + - Tue, 01 Aug 2023 12:15:25 GMT Expires: - "0" Pragma: @@ -651,12 +651,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - daa209ba-2fe3-4428-7fd2-cb6b2da850b3 + - bcdc3812-e0af-48f8-51ec-88cce0a3567a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.319971ms + duration: 264.194421ms - id: 10 request: proto: HTTP/1.1 @@ -669,7 +669,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + {"paramValues":{"directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -677,9 +677,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 46c47bea-e831-5839-01bc-fa3ddf581750 + - f218467e-f791-c74e-fb7f-c9a12a6b6ae7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -696,14 +696,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:40 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-new-directory","description":"This is a new directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:17 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:49 GMT + - Tue, 01 Aug 2023 12:15:25 GMT Expires: - "0" Pragma: @@ -725,12 +725,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 51029b15-1023-4ccf-7744-94d000fbb61c + - ab347af6-1519-4edb-74f4-4731443b4bf4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 407.381834ms + duration: 259.877235ms - id: 11 request: proto: HTTP/1.1 @@ -743,7 +743,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -751,7 +751,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2f62c34a-0cd1-5096-02ba-480436e9d60d + - 11bbcb79-c737-1ce7-1cbe-21af0ca15985 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -773,7 +773,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:50 GMT + - Tue, 01 Aug 2023 12:15:25 GMT Expires: - "0" Pragma: @@ -787,12 +787,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5dfdb881-8a30-458d-4d17-2048a9a49dc7 + - 4b7d4bd2-4ad9-4f97-55d8-8de35c57b428 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 407.913326ms + duration: 301.318472ms - id: 12 request: proto: HTTP/1.1 @@ -805,7 +805,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -813,7 +813,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a7916768-4d3f-6375-79fa-0f0963241331 + - 91f89846-280f-0894-f6a1-a7b6672c170c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -826,7 +826,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -835,7 +835,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:50 GMT + - Tue, 01 Aug 2023 12:15:26 GMT Expires: - "0" Pragma: @@ -849,12 +849,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3f08c559-9096-4754-55b8-e99680625599 + - decd902c-21a8-40b2-4a26-c73d24f53cdf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 321.243056ms + duration: 393.448047ms - id: 13 request: proto: HTTP/1.1 @@ -867,7 +867,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"description":"This is a updated directory","directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","displayName":"my-updated-directory","globalAccount":"terraformintcanary"}} + {"paramValues":{"description":"This is a updated directory","directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","displayName":"my-updated-directory","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -875,9 +875,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eafbf347-65b3-4699-656b-5608d78106eb + - 98d0248b-c3b3-0eac-c94f-12d9aa920c92 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -894,14 +894,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:51 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:26 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:51 GMT + - Tue, 01 Aug 2023 12:15:26 GMT Expires: - "0" Pragma: @@ -923,12 +923,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb637615-952a-428c-512d-1e89d4a540e4 + - 2605b5a9-26d4-4d57-4a00-67e7522c58a6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 370.338522ms + duration: 256.798261ms - id: 14 request: proto: HTTP/1.1 @@ -941,7 +941,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + {"paramValues":{"directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -949,9 +949,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0c20bd62-160d-9e8f-a163-e272f2c85fc8 + - 4cf0ae4e-f7da-df44-fe1c-4fae029fc1e5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -968,14 +968,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:51 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:26 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:56 GMT + - Tue, 01 Aug 2023 12:15:32 GMT Expires: - "0" Pragma: @@ -997,12 +997,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9f895d51-36cd-4d32-494a-5a33722e743d + - ffc64efb-d41b-4d99-7073-d63409fafbef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 341.717725ms + duration: 318.922192ms - id: 15 request: proto: HTTP/1.1 @@ -1015,7 +1015,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1023,7 +1023,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a9b36d4-e6fb-ca88-9437-2e16653d88ef + - c7fbc42f-7eac-4e57-d8f9-bebcb2eae2d2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1036,7 +1036,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1045,7 +1045,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:57 GMT + - Tue, 01 Aug 2023 12:15:32 GMT Expires: - "0" Pragma: @@ -1059,12 +1059,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 843b980c-c9e5-4ae9-4495-c9e53fb85ef1 + - 40333381-9e79-4321-4a83-1400551881eb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 541.806745ms + duration: 251.456778ms - id: 16 request: proto: HTTP/1.1 @@ -1077,7 +1077,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1085,7 +1085,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 73044d4c-bf77-5258-e307-2bf0e1652956 + - 638c1577-3d88-fa4b-ebc4-b97f1ea7037c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1098,7 +1098,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1107,7 +1107,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:57 GMT + - Tue, 01 Aug 2023 12:15:33 GMT Expires: - "0" Pragma: @@ -1121,12 +1121,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f7df2482-a694-444e-57e5-e6e481b56e4b + - c21d2c2f-4502-4614-4c8d-7f7d8f650ecd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 351.708336ms + duration: 329.545809ms - id: 17 request: proto: HTTP/1.1 @@ -1139,7 +1139,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + {"paramValues":{"directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -1147,9 +1147,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b3ba6049-7221-c73a-bf97-030219774ea8 + - d4c6d324-8ec2-380f-e990-ccd9341b2cd8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1166,14 +1166,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:51 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:26 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:57 GMT + - Tue, 01 Aug 2023 12:15:33 GMT Expires: - "0" Pragma: @@ -1195,12 +1195,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9b2a87f2-609a-4942-6351-b4a7c3c3717a + - 8af7c8dc-42f1-45cb-60b5-f18a03e5018e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 233.44208ms + duration: 177.223504ms - id: 18 request: proto: HTTP/1.1 @@ -1213,7 +1213,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1221,7 +1221,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6917c0af-6672-bbb6-731f-cdf45844280e + - 851a5ab3-3a50-9499-d921-a31fbfa69895 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1234,7 +1234,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1243,7 +1243,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:58 GMT + - Tue, 01 Aug 2023 12:15:33 GMT Expires: - "0" Pragma: @@ -1257,12 +1257,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7f678573-9a82-487a-41e5-f30a492f5c37 + - d869b2e1-7bee-4a8a-733d-3eba2dcdd555 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 480.533217ms + duration: 292.24567ms - id: 19 request: proto: HTTP/1.1 @@ -1275,7 +1275,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1283,7 +1283,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 294ee7e6-1a61-8b02-dc4e-b9e0aa4670e9 + - d974c2d9-4f0f-af5a-e2da-0b425ba54e91 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1296,7 +1296,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1305,7 +1305,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:59 GMT + - Tue, 01 Aug 2023 12:15:34 GMT Expires: - "0" Pragma: @@ -1319,12 +1319,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0b30809-0baf-4615-6ff3-db52f474c64c + - 9630f999-041b-4222-4e6c-31f06b66285b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 414.362718ms + duration: 204.836813ms - id: 20 request: proto: HTTP/1.1 @@ -1337,7 +1337,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1345,7 +1345,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 08def7ca-43fb-6605-7e26-07dee6963465 + - e107afe7-ca87-4d22-1169-4fb92defea91 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1358,7 +1358,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1367,7 +1367,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:59 GMT + - Tue, 01 Aug 2023 12:15:34 GMT Expires: - "0" Pragma: @@ -1381,12 +1381,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c6d50dc2-608b-44c5-7891-d0d52e025620 + - f0561770-1ee8-4de1-76d8-a1ba47f800e2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 294.118127ms + duration: 302.398881ms - id: 21 request: proto: HTTP/1.1 @@ -1399,7 +1399,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","forceDelete":"true","globalAccount":"terraformintcanary"}} + {"paramValues":{"confirm":"true","directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","forceDelete":"true","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -1407,9 +1407,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a07bad96-3f6d-9bfd-fe57-5b7f4017bfe6 + - 04bf17b2-ce9f-269f-5e5c-1b77b95fe09f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1426,14 +1426,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"c76dce51-5c06-4ecb-b91a-9074631cb04b","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Jul 10, 2023, 11:31:40 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 10, 2023, 11:31:59 AM","entityState":"DELETING","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE","jobId":"2817170"}' + body: '{"guid":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-updated-directory","description":"This is a updated directory","createdDate":"Aug 1, 2023, 12:15:17 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:15:35 PM","entityState":"DELETING","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE","jobId":"2958451"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 10 Jul 2023 11:31:59 GMT + - Tue, 01 Aug 2023 12:15:35 GMT Expires: - "0" Pragma: @@ -1455,12 +1455,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1f25c7b2-8275-4270-76ca-d43a4f9b6816 + - aefd2bdd-dcce-4e4d-65bd-a5822e82dcfe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 247.551736ms + duration: 327.599274ms - id: 22 request: proto: HTTP/1.1 @@ -1473,7 +1473,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + {"paramValues":{"directoryID":"2e82d0e1-357f-49b6-90db-edddf8ec7bc2","globalAccount":"terraformintcanary"}} form: {} headers: Content-Type: @@ -1481,9 +1481,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 798468ae-b0cf-571b-5d3e-d71f0e47c428 + - ade9d918-e490-e1e1-92d4-342f7c78737d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1507,7 +1507,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 10 Jul 2023 11:32:05 GMT + - Tue, 01 Aug 2023 12:15:40 GMT Expires: - "0" Pragma: @@ -1523,13 +1523,13 @@ interactions: X-Cpcli-Replacementrefreshtoken: - redacted X-Cpcli-Server-Message: - - Directory 'c76dce51-5c06-4ecb-b91a-9074631cb04b' does not exist. Make sure to provide the ID of a directory. + - Directory '2e82d0e1-357f-49b6-90db-edddf8ec7bc2' does not exist. Make sure to provide the ID of a directory. X-Frame-Options: - DENY X-Vcap-Request-Id: - - f84aa858-9fee-477c-45db-8fd983f43278 + - 44808e3b-725b-4afa-725e-ee0a41682e38 X-Xss-Protection: - "0" status: 404 Not Found code: 404 - duration: 380.167648ms + duration: 198.493323ms diff --git a/internal/provider/fixtures/resource_directory_role_collection.error_import.yaml b/internal/provider/fixtures/resource_directory_role_collection.error_import.yaml index 82b32c43..eb3787a5 100644 --- a/internal/provider/fixtures/resource_directory_role_collection.error_import.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection.error_import.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ebf4120a-adf7-d4b8-c2c5-6f26f762623e + - 21159bcb-59af-1dc1-c6c2-86281e9f23ef X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:05 GMT + - Tue, 01 Aug 2023 07:30:46 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 032239d9-cb98-4804-741c-bf0ef6ef1a1a + - 226de5b2-a9f5-41bf-5297-eaa8bdf3cd3b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 370.5254ms + duration: 216.709827ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b18a77af-acab-3adb-fbef-54f20ebf00bc + - 987d904c-2de5-3874-156f-33567c9d4d16 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:05 GMT + - Tue, 01 Aug 2023 07:30:47 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 487bfb2b-b849-405d-4a98-42e0d730b376 + - 0ae7e1cc-afa4-445e-6487-9ca949b559bb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.3468ms + duration: 336.736335ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 124739db-302f-d88d-d41e-88b23822d941 + - ad997c83-0b7f-83c4-f836-f0384ce7a8cd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:06 GMT + - Tue, 01 Aug 2023 07:30:47 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 54f1c18e-afc4-47e5-5750-1c5d260e17e5 + - 97cbacd8-deff-4a85-4b27-9ace2365957f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 368.8268ms + duration: 210.079282ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ae97c90-2739-c062-9ed2-a0c627fcd374 + - b081b630-19ef-f1cb-a27d-79b064daf955 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:06 GMT + - Tue, 01 Aug 2023 07:30:48 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b39b692d-13bc-4442-792a-b51047fce75e + - 79d3091b-08b8-4212-745c-f099289e2f13 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 271.1328ms + duration: 235.322537ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d877b28b-6b1f-4bf1-6c05-046c89328bed + - 9d3e7336-36e4-ae0d-6f36-68ef18b461d1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:06 GMT + - Tue, 01 Aug 2023 07:30:48 GMT Expires: - "0" Pragma: @@ -327,33 +327,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d17ce333-ab2a-4603-4603-caec028c296f + - b56a96c9-789b-4731-4c7c-2cc53c34852e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 263.0159ms + duration: 250.451848ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed16afaf-6eab-f7d1-db0f-de5ca40dd3b8 + - dcf3acdb-4f58-4148-4a72-51c7332d048f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -364,18 +364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:07 GMT + - Tue, 01 Aug 2023 07:30:48 GMT Expires: - "0" Pragma: @@ -389,33 +389,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2fb84ec6-c074-44a1-62eb-fade12b3934b + - 637a6c45-deb8-4014-7165-2364f0a1d0cc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.6062ms + duration: 222.376884ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6424fe67-649d-65a0-0e79-5f557d89caa4 + - aff388b0-0212-2c09-e703-47460d3b33c4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -426,18 +426,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:07 GMT + - Tue, 01 Aug 2023 07:30:49 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1c16ce82-64b7-410c-5aec-38ddddefc476 + - 4a5e1ce2-f98b-4a25-7676-cef50ab0d77c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 348.4224ms + duration: 237.067918ms - id: 7 request: proto: HTTP/1.1 @@ -475,11 +475,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 009e5ff6-5f59-eb6d-521d-c6fa447feda0 + - fa06d410-3a15-2426-15fd-1d7a57ef7f63 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:08 GMT + - Tue, 01 Aug 2023 07:30:49 GMT Expires: - "0" Pragma: @@ -525,33 +525,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e6f2d642-f68c-482e-7d67-4d9441a1bcb1 + - e0b3b1d8-6a5c-4bcd-6fcb-303ca942d061 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 280.6728ms + duration: 281.648848ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0149113d-a44f-d62c-a9f9-a2bc978b56a8 + - c2f2e962-191b-d17e-80e2-337cbda866bb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -562,18 +562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:08 GMT + - Tue, 01 Aug 2023 07:30:49 GMT Expires: - "0" Pragma: @@ -587,33 +587,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f3c33697-631c-4358-6fd2-1e3753e50f0c + - b540d2e4-b17f-40fb-7185-4ed76beab4d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 335.496ms + duration: 222.454525ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 16824705-bacc-4619-d74d-2202fd2ea32b + - d4217e7d-6df4-854b-e84d-9c4589c77742 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -624,18 +624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:09 GMT + - Tue, 01 Aug 2023 07:30:50 GMT Expires: - "0" Pragma: @@ -649,33 +649,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 45303e04-c590-441d-5324-47eda67e8590 + - c99f104c-1f2f-4bb9-66a4-ed80a5309566 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.3849ms + duration: 208.575347ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 54897c68-ee24-09d5-24c7-62b6a79dd187 + - c1331de8-2530-d1ce-c97f-dbbc4adba9d3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -686,18 +686,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:09 GMT + - Tue, 01 Aug 2023 07:30:50 GMT Expires: - "0" Pragma: @@ -711,33 +711,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 007008c5-52c9-46d4-6833-a1e5f1b862be + - 3f0e68a4-d1ae-4ac0-48d4-cd7e08394ffa X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 301.3969ms + duration: 292.26662ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b04fa9f7-5874-f6ac-3d98-442b1e40496b + - 1605ea72-2d03-5410-90a0-955a297a781d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -748,18 +748,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:09 GMT + - Tue, 01 Aug 2023 07:30:51 GMT Expires: - "0" Pragma: @@ -773,12 +773,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e5bc5fac-d8eb-4338-7fb6-f9159dee9dd3 + - a1b96f65-4b93-4185-5afd-4013e04bd005 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.2293ms + duration: 207.299599ms - id: 12 request: proto: HTTP/1.1 @@ -797,11 +797,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 653649a7-255c-ce25-269d-585c4af5fe72 + - 877398cd-6e37-902f-e3eb-c54e9098816a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -825,7 +825,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:10 GMT + - Tue, 01 Aug 2023 07:30:51 GMT Expires: - "0" Pragma: @@ -845,9 +845,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b2d72c9c-94b3-43ef-5611-1150f9c92983 + - b1ac5776-5876-4ac0-69b7-9ee04360f585 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 257.2185ms + duration: 257.154571ms diff --git a/internal/provider/fixtures/resource_directory_role_collection.multiple_roles.yaml b/internal/provider/fixtures/resource_directory_role_collection.multiple_roles.yaml index 43c8ce19..0f7687f6 100644 --- a/internal/provider/fixtures/resource_directory_role_collection.multiple_roles.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection.multiple_roles.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 48a7aa7d-ab6d-0029-e7c8-4e3cc1e2426b + - cbae4851-e067-1747-8d9b-85e22122985d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:45 GMT + - Tue, 01 Aug 2023 07:30:28 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - aeb79d3f-6365-40e4-5082-53e560f9d740 + - 0c0cbbe7-37e0-40c4-6d0f-e13a002c0690 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.7496ms + duration: 246.096115ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 11be6da8-671e-7ca1-27d0-9087b0a6f498 + - eca78c17-4b88-a866-916d-00a524af6fe4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:45 GMT + - Tue, 01 Aug 2023 07:30:28 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 080ef89f-5248-438b-4068-914ca7191d0f + - b0a6487c-482b-469f-7df6-6b99ebcb9bba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 446.2464ms + duration: 418.386357ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8361f36-22b6-e6b6-edc3-cd4f3a2bf28f + - ab1318d7-4b17-28e5-9b70-e20c20068402 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:46 GMT + - Tue, 01 Aug 2023 07:30:29 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 613a90c2-3483-4958-7094-41d2eae3a623 + - 374ec7f4-b481-43e8-7a39-6a2a18edc64c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.6979ms + duration: 226.8073ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 05ab7833-7e06-eb50-9cf4-e61991bdb94c + - e463b6c3-dfda-6e04-d88a-e29008fa5930 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:46 GMT + - Tue, 01 Aug 2023 07:30:29 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cd95a314-b810-4dcf-6d76-8d88529f91ec + - 06dfce28-2579-41e9-5787-cc34e1242b1d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 279.7778ms + duration: 317.168493ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9abaf9c0-208d-5927-e1ec-b526b3c8d8f9 + - ff8864a3-590c-da81-e0ca-f0d50d0c9eb5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:46 GMT + - Tue, 01 Aug 2023 07:30:29 GMT Expires: - "0" Pragma: @@ -327,12 +327,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7bed8b77-a78c-4683-4462-29d1c93f8ebe + - a76f29fb-52c1-4198-5be4-9ce95cbb60c9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 278.0819ms + duration: 248.107091ms - id: 5 request: proto: HTTP/1.1 @@ -351,11 +351,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 07f11cce-7a2b-2140-0e77-c22615069831 + - 93450f43-b801-e4bf-9af1-95e7500adba8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -379,7 +379,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:46 GMT + - Tue, 01 Aug 2023 07:30:29 GMT Expires: - "0" Pragma: @@ -399,33 +399,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - da784ff4-f1a5-4360-719b-191dddff919a + - d3f50eea-232f-46e9-7b88-99849f3cdbbb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 261.3116ms + duration: 259.556028ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f2aa10a4-4f63-b1fb-e9f1-87726aee5885 + - a066451c-0758-c63a-e898-d506b9e52e5a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -436,18 +436,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:47 GMT + - Tue, 01 Aug 2023 07:30:30 GMT Expires: - "0" Pragma: @@ -461,33 +461,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e552e356-3b20-4cd6-662f-d3eb2cef129d + - 6525a4b3-5738-483b-6cb3-130ab1f2698a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 450.934ms + duration: 235.523954ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc3dd074-7c97-1a42-8451-2b560ee42b01 + - ded58c0b-4d13-0f4d-0926-c05981f6c028 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -498,18 +498,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:47 GMT + - Tue, 01 Aug 2023 07:30:30 GMT Expires: - "0" Pragma: @@ -523,12 +523,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b91808e-b401-436f-69c9-740f1e597e26 + - 47740102-ca6c-4455-71b6-ceab5722c949 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.2596ms + duration: 236.873837ms - id: 8 request: proto: HTTP/1.1 @@ -547,11 +547,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 73123084-d760-ca61-98f3-8dbd22c30569 + - 8cceff9e-eadf-c319-54c7-67ae8d6f27a1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -575,7 +575,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:48 GMT + - Tue, 01 Aug 2023 07:30:31 GMT Expires: - "0" Pragma: @@ -597,33 +597,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 22cd6059-3a2e-4b99-740c-3c01472f6b7a + - 7cf2dd66-65c2-448c-4e7d-9793dd0ea3d5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 300.394ms + duration: 374.120339ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8809bd93-f2aa-54c1-ac97-b5787526b536 + - a1ff1418-a6e6-6eb7-16a1-7a2580f19b10 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -634,18 +634,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:48 GMT + - Tue, 01 Aug 2023 07:30:31 GMT Expires: - "0" Pragma: @@ -659,33 +659,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 93e60804-e185-494a-7a12-89aea12623a1 + - 7e8fc32c-9a5b-4191-4fa2-add5c4075e25 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.112ms + duration: 215.093499ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e007eac-9d05-6ec9-4c5e-f43c867d6680 + - 62e8c194-b303-a0fa-0a1f-fcbf8cf85f87 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -696,18 +696,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:49 GMT + - Tue, 01 Aug 2023 07:30:31 GMT Expires: - "0" Pragma: @@ -721,12 +721,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e44318fa-4494-4f6d-4c95-f1d04c0d5d07 + - 63dc7131-847c-441b-7311-a3aee3a47b73 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 370.4491ms + duration: 196.320902ms - id: 11 request: proto: HTTP/1.1 @@ -745,11 +745,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d447f19f-b658-7ac3-aa96-696e13f2a835 + - 971e8131-1aee-5674-363f-55ee0ba47654 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -773,7 +773,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:49 GMT + - Tue, 01 Aug 2023 07:30:32 GMT Expires: - "0" Pragma: @@ -795,33 +795,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cc7fdf2d-a899-4ccc-4dff-d8211e824102 + - 8965a95f-6403-457d-417a-42d0d527cc8e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 248.9997ms + duration: 268.782333ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 042ef3f2-a469-ea49-207d-1f0a617a34f5 + - b650922a-4a3b-135d-eeb6-c248c4b60bd7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -832,18 +832,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:50 GMT + - Tue, 01 Aug 2023 07:30:32 GMT Expires: - "0" Pragma: @@ -857,33 +857,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a8449359-7962-4e91-5b39-b47b87c31a72 + - a2c85eca-4947-4af6-4a7b-8f0e65738e47 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 355.7711ms + duration: 342.414978ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f91a29d0-977b-c581-df06-8a28e2e76474 + - d5b42395-29de-3034-de81-2bebedb0728b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -894,18 +894,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:50 GMT + - Tue, 01 Aug 2023 07:30:33 GMT Expires: - "0" Pragma: @@ -919,12 +919,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f332507f-ba41-4cde-4494-4792513d0fa5 + - 84fa3e68-b7fe-4f3d-4c8b-df6d927b1dff X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.7885ms + duration: 196.056266ms - id: 14 request: proto: HTTP/1.1 @@ -943,11 +943,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c0ce5352-54c5-6f6a-5442-b09c482ce504 + - d940c2a7-25cf-821e-765a-ce40a498c4e8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -971,7 +971,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:50 GMT + - Tue, 01 Aug 2023 07:30:33 GMT Expires: - "0" Pragma: @@ -991,9 +991,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9ba97164-1aca-46a1-6fbd-d76671dfaa78 + - 6ae4ca9d-3c19-480f-7701-6c639e3a5bba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 248.2746ms + duration: 273.640547ms diff --git a/internal/provider/fixtures/resource_directory_role_collection.no_description.yaml b/internal/provider/fixtures/resource_directory_role_collection.no_description.yaml index 576c2649..f72cb846 100644 --- a/internal/provider/fixtures/resource_directory_role_collection.no_description.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection.no_description.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 51f4e1a9-108b-0d14-77ee-73be507f54fe + - 7b6ac676-98b9-b3d2-9feb-5b928844e466 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:32 GMT + - Tue, 01 Aug 2023 07:30:14 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 090fc4ff-0360-407b-5b38-16b079268887 + - 22d813aa-9404-4702-5a3c-d2eaf80137ef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 721.0081ms + duration: 1.036536445s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8a1f57dc-aabe-808c-5887-59d43c912f33 + - a6f7bae7-d852-a43e-fee0-c26073d7a565 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:33 GMT + - Tue, 01 Aug 2023 07:30:14 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 61093252-ab92-41f9-6a86-10eb8841e0d9 + - f0ca45fe-4a97-4802-6893-738a25adc283 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 426.9009ms + duration: 395.638149ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14127e7d-8497-087e-eee3-e246f5baa07f + - 15f6ba83-3702-956a-779b-a80a3e0b95ce X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:33 GMT + - Tue, 01 Aug 2023 07:30:15 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 77034d6d-8b43-4c68-4177-e67fb8a9eef9 + - 1449b0ac-3104-4e92-433c-36127321995f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.3725ms + duration: 365.620044ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fcb18a9c-7245-6b86-520a-5506b13ad0f9 + - cc74438a-8f5d-3541-8c8f-ee2f7cc3be4f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:34 GMT + - Tue, 01 Aug 2023 07:30:16 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 264b16ac-38d3-450d-46d3-fefbe4eba799 + - 84e2c7c7-fe06-4dd1-4350-71d0a27fe18a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 470.5254ms + duration: 597.427963ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 71e51cf5-d079-b51a-004c-6f885e865cd6 + - 0a08a129-cf5c-6c17-774d-9d730d3ea64f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:34 GMT + - Tue, 01 Aug 2023 07:30:16 GMT Expires: - "0" Pragma: @@ -327,33 +327,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 648b5314-f014-4298-648c-398eb2184614 + - 3798a819-9d05-413d-5246-1e168ee4c257 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 482.6037ms + duration: 464.095401ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5790ee3d-88bb-7cc5-f92e-3202377777c3 + - fc515adb-6710-bb08-e8ca-2b2b583444f2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -364,18 +364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:35 GMT + - Tue, 01 Aug 2023 07:30:17 GMT Expires: - "0" Pragma: @@ -389,33 +389,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2f600cd6-459d-483f-6535-a7aa68b476fd + - 4fe989d1-4466-4d7f-6045-3c367235094b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.6712ms + duration: 503.020558ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 545d2671-0f56-682f-3890-f750427b9170 + - b2275eae-42e9-fb43-8a7d-d01a5b3a2b73 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -426,18 +426,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:35 GMT + - Tue, 01 Aug 2023 07:30:17 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a41ab0db-320e-4771-65b7-2938f47328e9 + - 40f57b5c-6f33-4c1c-6fe1-c3b620d291c5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 393.6753ms + duration: 430.536939ms - id: 7 request: proto: HTTP/1.1 @@ -475,11 +475,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41f88db3-9987-8da4-efa8-cb647ec5e261 + - b55b0929-c2c8-4e78-24a1-01effa083b8a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:36 GMT + - Tue, 01 Aug 2023 07:30:18 GMT Expires: - "0" Pragma: @@ -525,33 +525,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f6b5a59d-5b25-41a7-77a3-723c2ca3ced4 + - d167dddc-01f4-4b20-4fc9-f2ce4631d166 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 281.4431ms + duration: 445.771175ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cadaf18-0526-a464-ce60-e884044b82dc + - 8a2fc468-4b3e-c51a-fdaf-bef336d1dc4c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -562,18 +562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:36 GMT + - Tue, 01 Aug 2023 07:30:18 GMT Expires: - "0" Pragma: @@ -587,33 +587,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0d56ec5a-2194-4259-6bc6-5a55759d10a2 + - e18b5f0e-70a2-4600-5ad8-9a892cb001ee X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.4685ms + duration: 238.147023ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 34207695-e600-602f-bf8e-3a8e6b551a90 + - 83a28c6e-0748-7e99-05c7-219336d9be7f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -624,18 +624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:37 GMT + - Tue, 01 Aug 2023 07:30:19 GMT Expires: - "0" Pragma: @@ -649,12 +649,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ec516a0e-5b4e-4ccb-77c4-10df36443582 + - 879bd889-9383-4da8-558e-6f96041bc8c9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.0696ms + duration: 392.690873ms - id: 10 request: proto: HTTP/1.1 @@ -673,11 +673,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - de5ce4a5-9b0b-1ff4-d965-6042d36c6ffb + - 9761a416-7361-ac08-c9f4-9f5303986e91 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -701,7 +701,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:37 GMT + - Tue, 01 Aug 2023 07:30:19 GMT Expires: - "0" Pragma: @@ -723,33 +723,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 317b20b2-021f-49e3-73eb-e549f2e1ff94 + - d632dc41-e167-4085-7321-dbcfe566cb4d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 306.763ms + duration: 442.198539ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a8c83cec-aa8e-4a4e-4b7a-e8df56fbc1e5 + - c899b38b-b0e7-d463-1699-144feff4eb1b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -760,18 +760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:37 GMT + - Tue, 01 Aug 2023 07:30:20 GMT Expires: - "0" Pragma: @@ -785,33 +785,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5e9c9113-415d-4491-5c6d-29451835fb34 + - 17d5b531-4c63-466a-60ea-99f8b86eab96 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.0215ms + duration: 505.591381ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1178d293-822a-c45f-70bd-7bd0d5f5d1ff + - b9ed9f35-ac05-98f2-ce79-9d0a21d5d5aa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -822,18 +822,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:38 GMT + - Tue, 01 Aug 2023 07:30:21 GMT Expires: - "0" Pragma: @@ -847,12 +847,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5a1b5321-5e3e-44ad-7b26-6c480bb62ff7 + - ac3baec5-56f1-40b2-56bd-06fab345d85e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.0588ms + duration: 299.58351ms - id: 13 request: proto: HTTP/1.1 @@ -871,11 +871,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - de9332fb-c768-3c47-9b86-e7d6f514a58b + - 4853b8dd-af87-7519-9924-37c13a5b383e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -899,7 +899,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:38 GMT + - Tue, 01 Aug 2023 07:30:21 GMT Expires: - "0" Pragma: @@ -919,9 +919,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 144070d6-dbb0-4e91-5408-e33d237efdd2 + - d4eab3d4-c69b-4116-45cc-05a51d127f9d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 402.0424ms + duration: 466.796925ms diff --git a/internal/provider/fixtures/resource_directory_role_collection.update.yaml b/internal/provider/fixtures/resource_directory_role_collection.update.yaml index b93b425f..b6585e19 100644 --- a/internal/provider/fixtures/resource_directory_role_collection.update.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection.update.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5079abe4-3015-71c2-4d42-863bf0cd70e3 + - c9b21f13-167e-0b43-5835-f5a029ed9b31 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:51 GMT + - Tue, 01 Aug 2023 07:30:33 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d3844713-233f-4b4e-41ef-c30bea3113af + - d402a880-eabb-4e0f-6d62-4dbab67210c2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.8626ms + duration: 209.513361ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f49df7a1-b7d0-a3de-b996-e101f426b35a + - 240178de-eb60-8268-2ac7-0a6bbbb14c63 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:51 GMT + - Tue, 01 Aug 2023 07:30:34 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ab57bf15-7850-4043-5821-c7c32fc85537 + - e9ca18f5-5e74-4a3c-619f-1fd4dd41a074 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 342.9294ms + duration: 304.574653ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 92a86011-ceaa-648f-1f69-4c74acbca487 + - ba238250-2589-ead6-c02c-065beb3525ee X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:52 GMT + - Tue, 01 Aug 2023 07:30:34 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a1eee2c3-ec53-4c9d-5519-d502baa1dd73 + - 6b023be4-7a8b-4446-536e-caf1668d6aaf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 359.0841ms + duration: 328.003135ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33bac36c-e2e3-9dd4-8273-5f39dc2dd3ce + - 31bda8b0-86a5-9463-bd0c-f57643a630c0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:52 GMT + - Tue, 01 Aug 2023 07:30:35 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e702230d-b1cf-405c-6b7f-a6d083aaaced + - dc074948-b825-420b-6f39-eb6664bada5c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 305.6327ms + duration: 286.785506ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 791d8d01-9044-085b-2415-bd37dc38d8e0 + - 42ad47a8-c2f3-9d3c-60c8-65349f42bde5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:52 GMT + - Tue, 01 Aug 2023 07:30:35 GMT Expires: - "0" Pragma: @@ -327,33 +327,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - af7b319c-0ebc-425f-694e-84bc4c621fa0 + - 17827f7e-c9da-41e9-6ab1-040af1bd9af3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 338.2013ms + duration: 250.784779ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8b8fb19d-7f57-9b18-0750-d506eeb64170 + - 4bd86dd8-9699-1d2b-82a2-83ba155fd989 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -364,18 +364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:53 GMT + - Tue, 01 Aug 2023 07:30:35 GMT Expires: - "0" Pragma: @@ -389,33 +389,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0c713137-b988-4782-59d8-7dcf609310ca + - 03bb91f4-0e19-441a-725a-34fc43f69d15 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.4202ms + duration: 189.730397ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cdd61432-7beb-e89a-061a-3be47c569bd3 + - e38dda08-aac8-17b3-414f-fafe37801f2a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -426,18 +426,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:53 GMT + - Tue, 01 Aug 2023 07:30:36 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d573022b-272b-438f-63a2-3788c173f534 + - df64bfd0-7487-414c-7e3c-bb4665e221c3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.9729ms + duration: 313.886641ms - id: 7 request: proto: HTTP/1.1 @@ -475,11 +475,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 21e3d88d-d5f9-632f-c767-ac70fa740b77 + - 4654008f-38b7-d6f4-8b84-383de8cfa035 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:53 GMT + - Tue, 01 Aug 2023 07:30:36 GMT Expires: - "0" Pragma: @@ -525,33 +525,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6aff5cd2-45fd-4ee8-54a4-cafd07aa67dc + - 63c8676f-0b7f-4e6c-463b-5518e047b993 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 245.7056ms + duration: 287.405267ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 36122ef4-2940-de88-7f54-d5cb0eec07fb + - 2a8314ac-c5ef-e26e-3502-d555a7264cdf X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -562,18 +562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:54 GMT + - Tue, 01 Aug 2023 07:30:36 GMT Expires: - "0" Pragma: @@ -587,33 +587,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 387bd9b3-4a76-40de-5925-b7f27fb4c533 + - e431d807-049d-4e0d-4e94-471cdc099824 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.5669ms + duration: 200.267474ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9798048d-e4a7-122a-69ea-873a0fb4560a + - 36ef3f65-1d29-9f9c-322d-24e620e3ee56 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -624,18 +624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:54 GMT + - Tue, 01 Aug 2023 07:30:37 GMT Expires: - "0" Pragma: @@ -649,12 +649,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3b931e5c-455b-4c7a-67ce-d07798b61beb + - b8649d01-e593-441e-6c58-ff80c1d0d81a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 351.0071ms + duration: 282.241552ms - id: 10 request: proto: HTTP/1.1 @@ -673,11 +673,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eedbb878-442f-c4a7-100b-841c469dd00c + - b56e8d89-7cba-97c0-4125-7d8ef64be80c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -701,7 +701,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:54 GMT + - Tue, 01 Aug 2023 07:30:37 GMT Expires: - "0" Pragma: @@ -723,33 +723,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 93a53e57-fc29-4477-60a4-b87b5b106db6 + - f42c8b46-664e-4926-7449-1f2f89eeb449 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 244.8024ms + duration: 338.198381ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 58e7bd43-fafd-5c95-7213-0cf1b6ccdcdc + - 985ddd8b-2f89-0fa0-5bfc-cb3e83fb6545 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -760,18 +760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:55 GMT + - Tue, 01 Aug 2023 07:30:37 GMT Expires: - "0" Pragma: @@ -785,33 +785,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 97c3d0f2-b7b7-4694-43cc-94974a16c619 + - a46e4cee-d8f0-4f68-586a-81e5e20f080a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 454.568ms + duration: 227.075611ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 127ea4d8-16d8-eb6b-c2c4-3bdadec39592 + - 01b20c0d-2acb-2981-3706-ee6096c68705 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -822,18 +822,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:55 GMT + - Tue, 01 Aug 2023 07:30:38 GMT Expires: - "0" Pragma: @@ -847,12 +847,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5a94c121-9cb8-4d0c-73d2-0e44ee93043a + - a76bc278-4453-43b8-72d3-1209c6e8bb6a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.9733ms + duration: 287.46755ms - id: 13 request: proto: HTTP/1.1 @@ -871,11 +871,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 29b3a070-6cb7-1819-da70-67904ad3562b + - 0610c588-1952-06ed-cdd5-d0a889c758cc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -899,7 +899,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:56 GMT + - Tue, 01 Aug 2023 07:30:38 GMT Expires: - "0" Pragma: @@ -919,12 +919,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e4d36f99-ecf2-4fd3-7352-1390beb165e3 + - d69f9964-7d8a-40fd-48e2-c417b3db79bc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 253.796ms + duration: 248.422387ms - id: 14 request: proto: HTTP/1.1 @@ -943,11 +943,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 914b96c0-0bfe-bf29-f57e-605a077cc851 + - 9fd630bd-46c8-16f0-eb68-5102e631493c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -971,7 +971,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:56 GMT + - Tue, 01 Aug 2023 07:30:38 GMT Expires: - "0" Pragma: @@ -991,12 +991,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - de427a9f-cbed-4604-4dd0-8c59629d2be1 + - ed3f05a0-4b0a-4caf-65ea-8bf9979ecd78 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 341.845ms + duration: 286.984534ms - id: 15 request: proto: HTTP/1.1 @@ -1015,11 +1015,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c12c8222-6ce5-b523-0077-94567a02ace3 + - 753cd1ec-e0e9-243c-7041-0f354f0a624b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:56 GMT + - Tue, 01 Aug 2023 07:30:39 GMT Expires: - "0" Pragma: @@ -1065,33 +1065,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 29587b21-edfe-417a-7f21-c95d6d8a157d + - 3bdc12b2-2453-4b64-60a3-96febf408bfc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 254.4859ms + duration: 369.698841ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f9b5706-dc48-d167-5eac-4adfb906e038 + - 424ba15d-d521-3076-c055-c11215dea034 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1102,18 +1102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:57 GMT + - Tue, 01 Aug 2023 07:30:39 GMT Expires: - "0" Pragma: @@ -1127,33 +1127,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 73ac5df6-8724-4e06-476c-1566a3364ddf + - e2735802-f51d-4fd7-5f83-368ac59faa77 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.0705ms + duration: 264.508169ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97e38697-c104-96a4-e716-b48ef8349390 + - bf4ed2c5-09a5-d22b-abd6-886a7ba2831d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1164,18 +1164,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:57 GMT + - Tue, 01 Aug 2023 07:30:40 GMT Expires: - "0" Pragma: @@ -1189,12 +1189,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 525f1025-d509-4ee1-4e1f-ccb9eaea88c4 + - 5c4a30be-3cdd-4924-69a3-89f4c5702a7b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.1489ms + duration: 252.773293ms - id: 18 request: proto: HTTP/1.1 @@ -1213,11 +1213,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dcf9dc5c-b17f-f836-7e99-71f39cfcf19c + - 92288910-c2e9-2429-1f80-7bc25c39c00d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1241,7 +1241,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:58 GMT + - Tue, 01 Aug 2023 07:30:40 GMT Expires: - "0" Pragma: @@ -1263,33 +1263,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dd38a8c7-378a-44f0-501c-059962e943a7 + - a787c07a-6af8-4d87-5b63-e03fc774859e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 262.502ms + duration: 232.333659ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5c51f0ac-1475-ba31-c5f1-1b0a7f0502da + - 9a219f97-f04a-0ab4-9674-346b8e25e2fe X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1300,18 +1300,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:58 GMT + - Tue, 01 Aug 2023 07:30:40 GMT Expires: - "0" Pragma: @@ -1325,33 +1325,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c2b037d2-5d30-4fa0-69e4-0625e4e60e9b + - d4b81a1c-d877-44e1-6efa-6d2eaa797d69 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.0575ms + duration: 307.716139ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d783c875-2f53-416d-7c3e-2cc5d895908e + - 30c55070-0566-f7c8-27d0-fe9b9529b343 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1362,18 +1362,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:59 GMT + - Tue, 01 Aug 2023 07:30:41 GMT Expires: - "0" Pragma: @@ -1387,12 +1387,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6cf09080-c375-498e-65ba-ff582c08f711 + - 592d4142-437d-4eb3-6b6f-b36295195d94 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 433.1707ms + duration: 288.077958ms - id: 21 request: proto: HTTP/1.1 @@ -1411,11 +1411,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5863dab0-f49e-c840-9c16-5a97c13a712b + - 33a00365-d3cd-605f-8e67-18b0695dc8cf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1439,7 +1439,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:59 GMT + - Tue, 01 Aug 2023 07:30:41 GMT Expires: - "0" Pragma: @@ -1461,33 +1461,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 44b0dce4-76ec-441a-5e34-a69cc995e1ba + - 94b8127d-fe60-4c6e-6a63-fedb36d97f70 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 239.5889ms + duration: 235.570653ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f035a18-8e08-479b-0cc5-a525f4eb7468 + - fd511c89-6779-9cf0-7419-a905b9d4f66f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1498,18 +1498,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:59 GMT + - Tue, 01 Aug 2023 07:30:41 GMT Expires: - "0" Pragma: @@ -1523,33 +1523,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - da9fcd28-d3e2-4986-700d-05ff664888ea + - c410daec-b20e-44b6-7248-065a67dbdb0f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.8533ms + duration: 301.287024ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5bc90ad0-b982-a484-a59c-c5db180445e1 + - f82cc369-2ced-b79a-b767-25aaff204050 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1560,18 +1560,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:00 GMT + - Tue, 01 Aug 2023 07:30:42 GMT Expires: - "0" Pragma: @@ -1585,12 +1585,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 52ebfec9-4ccd-464a-4508-34da477cda97 + - 5a2cac45-74e9-4373-412c-8faf7f65f050 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 494.1373ms + duration: 180.964046ms - id: 24 request: proto: HTTP/1.1 @@ -1609,11 +1609,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 23b4173a-61d1-a7d6-2be8-515f412317a4 + - 162280e2-577b-f96a-8f23-4346089daa6a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1637,7 +1637,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:00 GMT + - Tue, 01 Aug 2023 07:30:42 GMT Expires: - "0" Pragma: @@ -1657,12 +1657,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - deea143f-d523-47cf-72c2-35d21dc6c773 + - 443b7f2a-0e98-4b06-45f5-b4e781ebe69d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 260.9123ms + duration: 269.373455ms - id: 25 request: proto: HTTP/1.1 @@ -1681,11 +1681,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6012476a-4539-8e04-c24e-632092bedc5d + - c3fe582f-d731-49f2-c3f1-00933675cf06 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1709,7 +1709,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:00 GMT + - Tue, 01 Aug 2023 07:30:42 GMT Expires: - "0" Pragma: @@ -1729,12 +1729,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 125da2e1-ae13-4b91-4444-faec33bba211 + - e37e6116-74d9-483b-5f34-9728cfcafc1e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 276.5447ms + duration: 291.780418ms - id: 26 request: proto: HTTP/1.1 @@ -1753,11 +1753,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d655e0b0-d7bb-3188-5e28-9c9c086842d9 + - 4b9878eb-7cc9-864c-8054-36888d8df70d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1781,7 +1781,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:01 GMT + - Tue, 01 Aug 2023 07:30:43 GMT Expires: - "0" Pragma: @@ -1803,33 +1803,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e4a44418-c626-47e9-6d67-38f974294744 + - 95792f7d-5832-49ab-5b4e-9d6eee5a3841 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 253.2577ms + duration: 245.70592ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e0077a7d-79e1-b0fb-65b6-129808e80db6 + - 10dc0b1e-006c-421d-2176-7fb75ce8f53f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1840,18 +1840,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:01 GMT + - Tue, 01 Aug 2023 07:30:43 GMT Expires: - "0" Pragma: @@ -1865,33 +1865,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f019b2ae-503d-411e-6ec5-1ec90902f68d + - 929e9acc-7630-46e6-7b90-3ead54122ae0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 372.2267ms + duration: 289.32979ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4fb8504b-de5e-b16a-e949-b8b538bb9ddd + - b969d80d-0dd4-a06d-9ba9-761053f8ec84 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1902,18 +1902,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:02 GMT + - Tue, 01 Aug 2023 07:30:43 GMT Expires: - "0" Pragma: @@ -1927,12 +1927,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9071a59d-9c61-4b86-7cf1-efae54b96355 + - c42157f4-06b7-4d1b-6861-a1562a0a470d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.4383ms + duration: 206.520085ms - id: 29 request: proto: HTTP/1.1 @@ -1951,11 +1951,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a337a9c1-c020-eb4d-33b6-a5c8b71cce36 + - c886aa2b-c007-7740-073c-ca6457e4d795 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1979,7 +1979,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:02 GMT + - Tue, 01 Aug 2023 07:30:44 GMT Expires: - "0" Pragma: @@ -2001,33 +2001,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 78881378-ba1d-4881-7947-bf51ebafc512 + - 18d3b0f2-4c2c-4563-5d58-8a7ff86b687d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 301.678ms + duration: 278.570018ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 128110f1-7f3e-9dd5-de45-3cf14ab00241 + - 1b726964-4ffd-9e51-3c8f-34985ea16325 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2038,18 +2038,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:02 GMT + - Tue, 01 Aug 2023 07:30:44 GMT Expires: - "0" Pragma: @@ -2063,33 +2063,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ac756084-f274-4ae9-717a-dc246069ab76 + - a0c758bd-1129-4381-5d10-5cbfb808e8e2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 504.1653ms + duration: 234.924052ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2dc7728f-6370-29d9-a0a0-98ad04d8319f + - bee73bfc-2de1-313e-8a4f-e29e5ef2f26c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2100,18 +2100,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:03 GMT + - Tue, 01 Aug 2023 07:30:45 GMT Expires: - "0" Pragma: @@ -2125,12 +2125,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dc46dc45-1a15-47fa-4ab4-0bfcf1e25200 + - 2230ca67-d50c-4d43-50ca-a55e3e1acf19 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.8563ms + duration: 289.031517ms - id: 32 request: proto: HTTP/1.1 @@ -2149,11 +2149,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7e784746-62cf-2951-1f6a-387ed2b1ef46 + - 9564c487-6eac-14c3-f94a-bc5029454431 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2177,7 +2177,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:03 GMT + - Tue, 01 Aug 2023 07:30:45 GMT Expires: - "0" Pragma: @@ -2199,33 +2199,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 542da529-10e7-4d26-5e24-99c4f83d1869 + - 522846b3-e92b-4f9f-571f-1c513e89782f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 262.875ms + duration: 294.544218ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 26bd6994-b6c5-c414-a5bf-d8be93647203 + - 67de403a-109f-76cf-99e3-4fa0834fe130 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2236,18 +2236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:04 GMT + - Tue, 01 Aug 2023 07:30:45 GMT Expires: - "0" Pragma: @@ -2261,33 +2261,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 499c927f-8816-4151-5d60-6ac846303967 + - cee8ab0a-f2d2-4b78-42fd-5fcf36b2433d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 355.0348ms + duration: 202.222213ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0fd821fc-a368-0aad-c566-b8cc3efb9beb + - e0b11f66-38c4-b530-c876-b206138f4dc5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2298,18 +2298,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:04 GMT + - Tue, 01 Aug 2023 07:30:46 GMT Expires: - "0" Pragma: @@ -2323,12 +2323,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3fc0dba3-a320-4366-53eb-8c7dfb78528b + - 9f17c718-cd21-43c3-747f-78f09549959c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.0898ms + duration: 245.570154ms - id: 35 request: proto: HTTP/1.1 @@ -2347,11 +2347,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1fcb9024-e83d-fda0-3f60-6902ca689fb7 + - 9b1b8ca3-925d-be3f-8b4e-17f6dc029d9c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2375,7 +2375,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:39:04 GMT + - Tue, 01 Aug 2023 07:30:46 GMT Expires: - "0" Pragma: @@ -2395,9 +2395,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 904c5b82-c75c-402f-5ede-74f8c093b1d6 + - d7edaead-d414-481c-67f1-c08845daa15f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 242.2574ms + duration: 255.80649ms diff --git a/internal/provider/fixtures/resource_directory_role_collection.with_description.yaml b/internal/provider/fixtures/resource_directory_role_collection.with_description.yaml index 2af9680a..a536d435 100644 --- a/internal/provider/fixtures/resource_directory_role_collection.with_description.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection.with_description.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dad53bf6-eac9-8bb4-d0ce-42ce3f816603 + - b734a67d-b0fd-b690-24d4-91464deb23f9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:39 GMT + - Tue, 01 Aug 2023 07:30:22 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5446a1cc-f1cc-4341-426c-77f5ca2a55e5 + - 2138e6c7-8f90-4d0c-4f81-01a7553809f0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.6136ms + duration: 255.683969ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8a09fcf2-da7a-fb73-719f-f7a4e87b0e8f + - ba50ddc4-94d2-3980-090d-1828e279720a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:39 GMT + - Tue, 01 Aug 2023 07:30:22 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c18603a9-362e-45ec-42de-56f581820dca + - e3a5891a-ab4e-4302-5870-30ed415a21e0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.2997ms + duration: 240.10547ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d0696797-80ba-4b4f-c251-e9a87219ac04 + - e3ddc747-2bee-09af-bfdd-a6e57f6562be X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:40 GMT + - Tue, 01 Aug 2023 07:30:23 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b2447b3a-d417-4c1e-4768-65edb5f9f833 + - 25d59c4f-631f-4e2b-7d27-76432987f8a7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 412.3097ms + duration: 356.742544ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7cef1877-6699-3f56-0d45-4bb1a1deef03 + - 1c809fc3-62cb-2f02-03bc-f77c5964503d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:40 GMT + - Tue, 01 Aug 2023 07:30:23 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - caebd831-c6da-4a0c-737e-17f8cca5e9e7 + - e3b8b0b5-234f-4034-46d8-ca4853b6748c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 335.1373ms + duration: 381.469208ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c6d03b56-53c5-55a3-9e5e-4fdc825b8919 + - d4e8e70b-0fd2-7f15-4647-17455a1ac0e1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:40 GMT + - Tue, 01 Aug 2023 07:30:23 GMT Expires: - "0" Pragma: @@ -327,33 +327,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a89b9446-92ee-4d96-4688-463979470fe6 + - 7fee28ac-38d7-4683-4f53-d80c4806fd1c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 344.9394ms + duration: 384.564339ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 568e230f-aa42-a8a0-d914-ccfe2ac42fa4 + - 5e650bfa-c204-256a-d2f1-42dede1dd667 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -364,18 +364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:41 GMT + - Tue, 01 Aug 2023 07:30:24 GMT Expires: - "0" Pragma: @@ -389,33 +389,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9a7bf656-8f94-4e64-6321-cd6d22a3f05f + - b62f0c1a-8a67-4635-7640-730efee8ec9f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 395.9135ms + duration: 258.514898ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 556bc9d0-fc1c-c6b4-6e28-a804f648c548 + - d12481df-ac3f-29a8-ef39-901966c205d9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -426,18 +426,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:41 GMT + - Tue, 01 Aug 2023 07:30:24 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e5568eef-2f68-4ae4-4805-bd5c8fcfdda1 + - 0a5499ea-59be-432d-4f74-0bcea1625a4d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.5205ms + duration: 209.829698ms - id: 7 request: proto: HTTP/1.1 @@ -475,11 +475,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 744cceed-b43c-12d6-526f-b9f6efe36253 + - cc46ecbe-b5ba-9473-50fa-97efec6dbb8a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:42 GMT + - Tue, 01 Aug 2023 07:30:25 GMT Expires: - "0" Pragma: @@ -525,33 +525,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2782daf0-b4bf-4fff-4eb2-532798d61cd8 + - 5525dc52-e5fa-412d-6950-c10c2bb2e8fd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 273.4363ms + duration: 425.656801ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - de457002-0a2b-558b-fbeb-9159c00da7d4 + - fedfdf67-e1a5-90e7-1849-b69e91d5675f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -562,18 +562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:42 GMT + - Tue, 01 Aug 2023 07:30:25 GMT Expires: - "0" Pragma: @@ -587,33 +587,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 32484f58-e7b9-41b3-7709-38ca21d47d5c + - efe76be6-78c4-43ce-6d71-dc294d9e21f5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.0626ms + duration: 336.231732ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eea94d83-a01b-7800-d8fd-9b152dd70e89 + - e82dd501-7f8b-8d78-860e-4492a435f59b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -624,18 +624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:43 GMT + - Tue, 01 Aug 2023 07:30:26 GMT Expires: - "0" Pragma: @@ -649,12 +649,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6b0a0dc5-4af1-42bb-7b27-4f3ca5758183 + - b49b02d6-e24c-42b8-4e00-b5d47128da67 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 412.2488ms + duration: 216.565534ms - id: 10 request: proto: HTTP/1.1 @@ -673,11 +673,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 99109b3a-46bb-682e-9bbd-0815ed413e27 + - 5084e908-742c-4487-ba29-6ab4634ca2cd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -701,7 +701,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:43 GMT + - Tue, 01 Aug 2023 07:30:26 GMT Expires: - "0" Pragma: @@ -723,33 +723,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2b55431d-abfd-4c93-4c3d-9d6819a71ded + - 79ca8e5c-196e-4279-5bbf-84b3aba20c2d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 289.8298ms + duration: 233.715874ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 91c04cbf-23ec-4f17-0bde-8ceb6db31de4 + - 115e1118-fb61-7173-1bb1-0cfb32e4ccee X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -760,18 +760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:43 GMT + - Tue, 01 Aug 2023 07:30:27 GMT Expires: - "0" Pragma: @@ -785,33 +785,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0d68bc48-ca75-479c-5cc7-6085f5cf9af6 + - 0ed91a77-c884-4f0f-6333-a92da12eafc6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 404.1215ms + duration: 386.412629ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b953d6b2-889c-e285-9918-08fd59314893 + - 46c9df8f-9b02-3429-6005-adb8c8174e50 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -822,18 +822,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:44 GMT + - Tue, 01 Aug 2023 07:30:27 GMT Expires: - "0" Pragma: @@ -847,12 +847,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c2f16d54-2168-4fa4-6a40-9245e59201fc + - 3929095b-fddd-4ae6-611e-39ba88754bb7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 337.1055ms + duration: 234.933852ms - id: 13 request: proto: HTTP/1.1 @@ -871,11 +871,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 097f5e7f-7887-55c3-521f-80e6929850e6 + - bae80bd9-c3f5-2c9d-4404-841c46cfd562 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -899,7 +899,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:38:44 GMT + - Tue, 01 Aug 2023 07:30:27 GMT Expires: - "0" Pragma: @@ -919,9 +919,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 17cdd9af-9ff2-43a4-4e22-2322f6212e4d + - 30db5ff5-f313-4eaa-5001-c65ca403402c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 311.3164ms + duration: 308.042119ms diff --git a/internal/provider/fixtures/resource_directory_role_collection_assignment.yaml b/internal/provider/fixtures/resource_directory_role_collection_assignment.yaml index a97c7383..e04c00af 100644 --- a/internal/provider/fixtures/resource_directory_role_collection_assignment.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection_assignment.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a24af764-81f5-a81d-9bcc-373018b2521b + - 6b46a303-c0f2-90cb-56ae-1286637c0208 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:29 GMT + - Tue, 01 Aug 2023 07:34:04 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dc1b602d-8b97-4b5c-4d6d-c406a03d3485 + - fae33865-2ba1-451a-65b8-490836ebc585 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 827.3588ms + duration: 199.12494ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c536bef2-c03b-a4ed-6dd4-e907f2b364b1 + - 14736647-92c9-43c3-abe4-c656bd16d9d4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:29 GMT + - Tue, 01 Aug 2023 07:34:05 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 70741af2-9934-42f0-7825-fce6780e608e + - 83e3affe-ea7f-4ae7-4a79-44516ccc6a7a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.4219ms + duration: 303.036884ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 95af5fef-bc04-1095-9429-27e6ff280fbf + - 65d6c1de-a4ec-376d-baa9-063178cb41ea X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:30 GMT + - Tue, 01 Aug 2023 07:34:05 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2977ba76-fd86-4032-4999-103fb835356d + - 462a8179-6688-46f2-40a0-287d75e6c5a4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 429.0793ms + duration: 280.179189ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8569e51-5e17-ad8b-fb1e-a529f30b38d1 + - b5a8be79-e560-c761-c696-9667afa57c97 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":36,"active":true,"roleCollections":["Directory Viewer"]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":46,"active":true,"roleCollections":["Directory Viewer"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:30 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a533a2af-dbf6-4526-45b0-d258ec69dab7 + - 71112654-9903-42da-7d2d-653d878d9b4b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 461.9896ms + duration: 433.181589ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 47a1a510-b6e3-1092-640d-67ccff9117dd + - 0284d959-68e9-8a68-5792-5ab4e7d8b23e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:31 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 86685101-a2c3-426a-6abc-878925a05183 + - 78affc9d-8f49-49d2-7d6d-ac237f5c9b92 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 451.031ms + duration: 342.941058ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0a9709cd-72bb-7566-fa3b-ee135835c614 + - 76d3210e-25c8-060e-b3ca-f7741252230f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:31 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -379,33 +379,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - abd3d3ad-759b-4d70-6855-9fdd2305344e + - 7af3e6fb-2320-4d0c-684f-e71b46829ac5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.3607ms + duration: 277.003346ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - de44a7fe-d037-e2f8-dcf6-bd209731c0b5 + - 72ea73d3-7fb4-1a4a-0366-03c25a781a6e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -416,18 +416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:32 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -441,33 +441,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7b1a8196-57bf-4042-6c88-13aa5f7d6e6c + - 2e57ed5e-9f81-4397-4f8d-bc3978be4e81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 404.4377ms + duration: 418.229812ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 78e63424-96c7-09a0-8978-6d6ff5bee2a0 + - c5fa9ca3-eea7-9bcf-5575-903ddc8c255c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -478,18 +478,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:32 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Pragma: @@ -503,33 +503,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6242076b-dea5-49ef-575b-3f4dbbd49acc + - abb81d90-c491-46a5-60a4-f08a9d8ff6e6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.4172ms + duration: 199.969999ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - abdc877c-f816-876d-d058-d3a93ac8a1d7 + - 1c74d306-76d9-3524-b777-a7e2915f5b37 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -540,18 +540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:32 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Pragma: @@ -565,12 +565,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - aa961839-0fc7-4bba-5046-1144514751a1 + - c902c251-d788-450f-7ba8-f4a6e3b722a6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 419.7864ms + duration: 204.937083ms - id: 9 request: proto: HTTP/1.1 @@ -589,11 +589,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8eb8f791-db8d-c638-5ccd-a8363966ca82 + - 8737280f-9049-7ef5-921c-90a163f7334a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -610,14 +610,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":37,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":47,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:33 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Pragma: @@ -639,9 +639,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a06e7dc6-4401-4795-7031-feb35caf4007 + - 17aace2f-fdbb-4af7-5d15-c1bd2e9bd063 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 403.3438ms + duration: 381.144168ms diff --git a/internal/provider/fixtures/resource_directory_role_collection_assignment_import_error.yaml b/internal/provider/fixtures/resource_directory_role_collection_assignment_import_error.yaml index a7be4ef4..41b388a0 100644 --- a/internal/provider/fixtures/resource_directory_role_collection_assignment_import_error.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection_assignment_import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2e561355-f457-1158-d6a8-e4c53e817f1f + - 7bcc32ee-d1e0-8cf5-0b51-84e8013bdb2e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:38 GMT + - Tue, 01 Aug 2023 07:34:14 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5b81633b-cbd8-4738-4b04-ecf4fe4ab6c9 + - 2a0efac5-7fb1-49b3-796e-2fd4a2125762 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.7404ms + duration: 257.564691ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f789c377-7334-53ad-1426-fb7784fee339 + - c27d3bf7-939b-eb51-32ad-df8871987240 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:38 GMT + - Tue, 01 Aug 2023 07:34:14 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 91faf9f4-0840-46bc-4f62-9533b82fa3d9 + - 0c2cd48d-dbc7-4a37-7352-bb5104904bad X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 349.0371ms + duration: 257.949015ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7421f6cb-4947-a62f-5f69-3b4d5deceb80 + - cb2a2a50-415d-7f6e-dea2-b835b341a3c8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:39 GMT + - Tue, 01 Aug 2023 07:34:15 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - de516558-0039-4f8f-4570-adec094bc5f3 + - 86016966-3673-4b95-7ce9-33bf4e523118 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.6535ms + duration: 360.932965ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b43daac-a58f-3500-1f37-879ecc048cdc + - f1cb159a-ac2b-8afc-df01-50044a582006 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":38,"active":true,"roleCollections":["Directory Viewer"]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":48,"active":true,"roleCollections":["Directory Viewer"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:39 GMT + - Tue, 01 Aug 2023 07:34:15 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8256a0ec-3cf8-47c9-617c-d4f017819322 + - 0dfdb6fe-7cab-4761-4fce-7effddfdc41e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 431.2261ms + duration: 386.79042ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c75a81a1-fa2e-c38f-f94b-f061ae9464d8 + - 6c554703-cc41-8c61-e5f3-ab0b2721b41c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:40 GMT + - Tue, 01 Aug 2023 07:34:15 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 789f5007-b9e5-45b6-4e38-c5cb88efd14f + - 33aa7955-70cf-45ed-7424-3dd226f14ffd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.4463ms + duration: 248.874704ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 78a3147c-bf19-f717-68c8-75c85766deb1 + - bf238b52-151e-7f95-4eaa-eb2b38298825 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:40 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Pragma: @@ -379,33 +379,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c89df78d-7b5e-4cf3-621f-c1d038103165 + - b4a53ea1-8804-4b95-44a5-763e65ee69e7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 401.8729ms + duration: 285.296962ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4fc11bd4-4e25-7639-74ac-13c3fed4b92a + - 30a4ae76-fa6b-4114-f9e5-7459a916b93c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -416,18 +416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:41 GMT + - Tue, 01 Aug 2023 07:34:16 GMT Expires: - "0" Pragma: @@ -441,33 +441,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f89c3e2f-07ea-4841-4950-779d8c15279f + - e8cd62db-64e9-4e88-43f4-1df2308f16bf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.567ms + duration: 317.096238ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fdd023cf-cba4-967b-f889-a22b200f732a + - 5c7bbdd9-1746-b35a-c978-950c6436556c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -478,18 +478,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:41 GMT + - Tue, 01 Aug 2023 07:34:17 GMT Expires: - "0" Pragma: @@ -503,33 +503,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f3367cbb-1b3c-42db-7930-e3da0672969b + - 7b468bab-595d-4481-54ea-08884ff81735 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 393.2332ms + duration: 234.088071ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 485a22ba-68c1-76c4-4512-d03624513328 + - 58ef2200-8e3e-0a06-7975-2cb985380626 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -540,18 +540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:42 GMT + - Tue, 01 Aug 2023 07:34:17 GMT Expires: - "0" Pragma: @@ -565,33 +565,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d0ea60df-b061-40f6-47b2-88f27d38f224 + - 9fc47b45-da2e-4ea7-7ba9-6ba26e696d99 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 373.6756ms + duration: 257.771728ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a943ea4d-6a7b-75a4-b40c-46c02490bd2c + - d7229bbe-f244-290b-bafa-25c11fdaebdc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -602,18 +602,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:42 GMT + - Tue, 01 Aug 2023 07:34:17 GMT Expires: - "0" Pragma: @@ -627,12 +627,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 39c7346c-eb72-4b89-70be-b8abe48c9a59 + - 14736b5c-1fb8-40e3-77aa-a44cba5c42d6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 418.3519ms + duration: 174.501083ms - id: 10 request: proto: HTTP/1.1 @@ -651,11 +651,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b2a9494a-f8b9-a017-8f2b-3d75efdfe9fe + - 2d5e73ec-71dd-f013-1909-beec34841566 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -672,14 +672,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":39,"active":true,"roleCollections":[]}' + body: '{"id":"40c72ef9-b901-4b89-91fb-3d283231f7b4","username":"jenny.doe@test.com","email":"jenny.doe@test.com","origin":"sap.default","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:43 GMT + - Tue, 01 Aug 2023 07:34:18 GMT Expires: - "0" Pragma: @@ -701,9 +701,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e748a151-df44-4db2-4b7c-bebfd4baa8fa + - 3824a468-2c3d-477f-5ec1-3b026618b77f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 419.7192ms + duration: 329.203062ms diff --git a/internal/provider/fixtures/resource_directory_role_collection_assignment_with_origin.yaml b/internal/provider/fixtures/resource_directory_role_collection_assignment_with_origin.yaml index 1af4145f..50fc21a6 100644 --- a/internal/provider/fixtures/resource_directory_role_collection_assignment_with_origin.yaml +++ b/internal/provider/fixtures/resource_directory_role_collection_assignment_with_origin.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3a69ac3c-d9b8-8b05-e0fa-27532292cd82 + - 5d5c5a0e-c519-a2d1-3f45-3364d9dd7687 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:33 GMT + - Tue, 01 Aug 2023 07:34:09 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 757eff1a-f2f5-4f37-4978-bb661300e24a + - 7cf55769-aab0-4611-7c88-4e2a44ed70ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 346.431ms + duration: 340.121086ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 378436c4-32a5-a3cc-9761-137ed374bf9e + - a0658dc2-2465-35b6-871f-11a27b2cfae5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:34 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2244fb60-ff70-42b3-47be-d1fb2652f17b + - e0d07787-d3fb-4b23-5168-9ed7b8078d08 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 407.6866ms + duration: 621.617805ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2b033550-27a5-d2fc-1c33-351e8e5fbf4b + - 0ede36ab-a2a5-ca2b-e83f-61f42bc03734 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:34 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 72c1071d-22f8-4491-4e76-c1778393a1c5 + - 6b4151fe-6cda-4cb5-6bf0-b7852afce1e4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 403.9561ms + duration: 275.692134ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b573d78b-4d60-8dcf-1d8c-61ad86381fcc + - e220318e-ebd5-0f32-1bbb-94e6d80a41d4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d1a6ec95-d517-48ea-af12-9744ce72a24f","username":"john.doe@test.com","email":"john.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":18,"active":true,"roleCollections":["Directory Viewer"]}' + body: '{"id":"7409b6ba-5340-4867-9221-225d07ceefb2","username":"john.doe@test.com","email":"john.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":1,"active":true,"roleCollections":["Directory Viewer"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:35 GMT + - Tue, 01 Aug 2023 07:34:10 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c887a876-ec4a-472a-58c5-d19e09e3056b + - 2438cfe6-3950-435e-5d41-3a16662f1d50 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 372.7349ms + duration: 334.305921ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 83e9187e-37cf-e78a-95bd-08a4367e37f6 + - 09ac8bd0-2590-8ad0-05a6-3f09759e6c57 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:35 GMT + - Tue, 01 Aug 2023 07:34:11 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 78517f5d-bec5-4abe-4f45-666f451ab934 + - de6cad51-e152-42af-7799-529b88f08569 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.2793ms + duration: 268.816532ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b3183c3a-c4eb-77e9-a2d6-1d50ffd624f9 + - 5b5e02f5-ca08-91c0-c1ac-70daaa4b812b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:36 GMT + - Tue, 01 Aug 2023 07:34:12 GMT Expires: - "0" Pragma: @@ -379,33 +379,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b5c63ad2-a452-4eda-6340-c44b38ec06ce + - 952876cc-99d4-4303-7908-3b9b778a102b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.4615ms + duration: 424.822794ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 309ccdb7-75e2-e6ab-07cf-09de18846093 + - 15e5a110-ab01-de40-ef23-fa210a2fa87a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -416,18 +416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:36 GMT + - Tue, 01 Aug 2023 07:34:12 GMT Expires: - "0" Pragma: @@ -441,33 +441,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6ba4d141-43f2-4c24-6384-45690c2a2c15 + - cf1f919f-b207-478f-545c-8d4990181a28 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.9408ms + duration: 222.504359ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bcb1b33f-e927-ba73-6d98-8f9119493ea9 + - 80df0815-8bad-d93d-6089-4f1b1b40f4b2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -478,18 +478,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:37 GMT + - Tue, 01 Aug 2023 07:34:12 GMT Expires: - "0" Pragma: @@ -503,33 +503,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 180c1fc9-13e8-48a3-453c-94093261a191 + - 80c2484b-5da9-4771-4392-df9b756569c9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.3546ms + duration: 188.087495ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 82d748bf-d71e-78c9-89ca-68a28424ea5e + - 2f185186-6cb9-c391-a398-0fd59c8f8dd2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -540,18 +540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:37 GMT + - Tue, 01 Aug 2023 07:34:13 GMT Expires: - "0" Pragma: @@ -565,12 +565,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 56914d9b-7590-4c6d-5723-4ed24d27f148 + - 2f7efcfc-4cb5-4a0a-443b-8c7837209ca6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.0927ms + duration: 405.142799ms - id: 9 request: proto: HTTP/1.1 @@ -589,11 +589,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 04899060-f318-f856-9a5a-ceb93d013608 + - f43fd39d-257e-b100-45c3-efa6b24a780b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -610,14 +610,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"d1a6ec95-d517-48ea-af12-9744ce72a24f","username":"john.doe@test.com","email":"john.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":19,"active":true,"roleCollections":[]}' + body: '{"id":"7409b6ba-5340-4867-9221-225d07ceefb2","username":"john.doe@test.com","email":"john.doe@test.com","origin":"terraformint-platform","zoneId":"05368777-4934-41e8-9f3c-6ec5f4d564b9","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":2,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:41:37 GMT + - Tue, 01 Aug 2023 07:34:13 GMT Expires: - "0" Pragma: @@ -639,9 +639,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b77aa30-221e-442e-5325-211164ea1f8e + - e510aa0c-34f6-48d5-4b00-9549d6c1258c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 512.0271ms + duration: 366.182749ms diff --git a/internal/provider/fixtures/resource_globalaccount_resource_provider.create.yaml b/internal/provider/fixtures/resource_globalaccount_resource_provider.create.yaml index 2ffecadc..4ff9c4af 100644 --- a/internal/provider/fixtures/resource_globalaccount_resource_provider.create.yaml +++ b/internal/provider/fixtures/resource_globalaccount_resource_provider.create.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 48f3f8ae-5dbd-07c5-99ab-7570028cebb4 + - 728fa12d-036b-ab7c-ab4a-483a34f12858 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -34,7 +34,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:15 GMT + - Tue, 01 Aug 2023 07:33:52 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c1a89ddb-9251-4ac9-7e8e-c7f92e861919 + - e0d24913-c4b2-4b3e-5676-f948aa5b5a56 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 502.996992ms + duration: 327.704303ms - id: 1 request: proto: HTTP/1.1 @@ -75,7 +75,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -83,7 +83,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 30a6e13b-be82-9b07-b87d-d823464f18d9 + - 1599b851-990c-6eb3-1699-882ea798ffcd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -96,7 +96,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:15 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -119,12 +119,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e3909a1a-c0f5-45c7-56ce-861936b2f35b + - 0f23c0d9-a09e-455e-58ea-0eed3a579ae0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 312.430862ms + duration: 269.783264ms - id: 2 request: proto: HTTP/1.1 @@ -137,7 +137,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -145,7 +145,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2c77eb4e-e3c2-5510-fc12-5c1550b75256 + - 2d5415a2-a0e1-f064-2388-b3d201247bf7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,7 +158,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:16 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f376f59c-c9e5-4a0d-4338-184a35f4491a + - c6712764-bf0f-4ce0-77b3-bc5dee1e8604 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.831235ms + duration: 285.022434ms - id: 3 request: proto: HTTP/1.1 @@ -207,9 +207,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 84cb4b5e-95a6-fb06-7990-d9f51615ffec + - 4f06af81-4203-ac5e-94b4-b82ec79286e0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:17 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c305f671-e066-4cda-71a6-715683c73e7e + - 29703559-97c2-49d3-65ca-c0eddafb7abb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 476.858802ms + duration: 320.089578ms - id: 4 request: proto: HTTP/1.1 @@ -273,7 +273,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -281,7 +281,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 96dd83ba-ced8-b187-232b-7cf02f37d7b7 + - e5eae392-668f-2349-b163-15c6ab082269 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -294,7 +294,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -303,7 +303,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:17 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -317,12 +317,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 31e02521-74ca-4110-7086-111800aad94e + - 100f4d44-d9a0-4a17-510b-2a7599e4c7b4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 405.055234ms + duration: 268.279704ms - id: 5 request: proto: HTTP/1.1 @@ -335,7 +335,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -343,7 +343,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e03fc310-fd61-5280-230b-6c4bd785fd12 + - 98138e5c-fa23-fb0f-2792-41b39a663da3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -356,7 +356,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -365,7 +365,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:18 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -379,12 +379,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6680e845-eb5d-41b0-6756-58495bcc314b + - ae7d4924-4cdb-48b6-6e26-32085559b885 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 231.972414ms + duration: 224.995647ms - id: 6 request: proto: HTTP/1.1 @@ -405,9 +405,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ce91bbe-a81a-d737-a82a-dd75da967a8b + - cb8f686f-9034-34be-7c06-d903dc99797c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -431,7 +431,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:18 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -453,12 +453,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0a20a0ea-939c-4fbf-6273-e5768686f6d6 + - 2db788bd-a63a-4e98-54ef-23a961704a61 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.029163ms + duration: 203.782393ms - id: 7 request: proto: HTTP/1.1 @@ -471,7 +471,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -479,7 +479,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d8b7ba9e-b9a7-c62c-def9-93228c3304f1 + - 59bc792e-3be7-46cd-ef1f-828462db94dc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -492,7 +492,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -501,7 +501,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:18 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -515,12 +515,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a21f69d8-e7c9-4e34-4ac5-8f2002bffd32 + - 9cf428b2-e105-4a48-6bc5-424b712375ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 286.874784ms + duration: 283.213163ms - id: 8 request: proto: HTTP/1.1 @@ -533,7 +533,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -541,7 +541,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7f8bcfff-cb69-cfa6-7607-f154a33a600a + - 2731e93e-00c0-0316-1b09-6a0a48e6d4d9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -554,7 +554,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -563,7 +563,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:19 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -577,12 +577,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 16a7f195-f2db-4856-600b-031a022039bd + - 92acbb6b-fde0-41f4-7bdd-03fae92cae69 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 251.587533ms + duration: 188.298208ms - id: 9 request: proto: HTTP/1.1 @@ -603,9 +603,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f234eaf2-9419-e04f-5aff-aa27ad7e560b + - 3c4005af-f791-f210-b828-c971f1ff3348 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -629,7 +629,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:19 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -651,12 +651,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 794e27c2-ab92-4304-7c44-b958ed131aa4 + - a5addc98-165f-4eea-7d61-9166f0e25f24 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 277.665019ms + duration: 554.872953ms - id: 10 request: proto: HTTP/1.1 @@ -669,7 +669,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -677,7 +677,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 603c7658-5e53-a79a-a5f3-3b586c7edb47 + - b8aa9834-eb74-59e6-55ee-d62d476bfc79 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -690,7 +690,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -699,7 +699,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:19 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -713,12 +713,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 087dd23c-dcd0-46fa-57e6-0ae7f3bdb590 + - a9e53a72-3be6-4549-73c8-9bc1c12df7bb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 227.168997ms + duration: 293.382128ms - id: 11 request: proto: HTTP/1.1 @@ -731,7 +731,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -739,7 +739,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 220b4764-3b77-2635-df11-21ee04e2a14a + - 88271c06-c097-8ed5-7e97-26662f5b519e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -752,7 +752,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -761,7 +761,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:20 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -775,12 +775,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43e77f4c-316a-4189-7b45-a3f8c2226901 + - 62c6561c-3181-4b0e-7a6d-681ad6a35de9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 230.849149ms + duration: 199.747789ms - id: 12 request: proto: HTTP/1.1 @@ -801,9 +801,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 004049ae-0cca-4e78-3cf8-091077dcd089 + - 6a735e14-5cc9-d5fd-22ab-0c68aca012ce X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -827,7 +827,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:20 GMT + - Tue, 01 Aug 2023 07:33:57 GMT Expires: - "0" Pragma: @@ -849,12 +849,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2d5bb8c4-1ca4-4a6f-72b9-a5cdfc390d51 + - 2a26602b-bb20-41f1-6711-fbf98386e46d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 614.941982ms + duration: 426.35466ms - id: 13 request: proto: HTTP/1.1 @@ -875,9 +875,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f81a8f4-4022-9ac6-b7e7-212a1b09db3a + - a12a9596-f965-a492-4682-852a2b9192a4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -901,7 +901,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:21 GMT + - Tue, 01 Aug 2023 07:33:57 GMT Expires: - "0" Pragma: @@ -923,12 +923,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 176bf1a5-9e70-441f-5e12-030ef211ff4b + - 5d2fa732-ebdc-4054-555a-28098e60f2c0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 580.650669ms + duration: 284.147569ms - id: 14 request: proto: HTTP/1.1 @@ -941,7 +941,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -949,7 +949,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 572c9c09-a663-7cc6-ea13-8dc560b927fa + - 09c6f80d-a1df-9abf-ae3e-660c702622d6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -962,7 +962,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -971,7 +971,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:22 GMT + - Tue, 01 Aug 2023 07:33:58 GMT Expires: - "0" Pragma: @@ -985,12 +985,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b0ab1ded-a9f1-463b-6c53-e2620c92fbee + - e54b58ef-5263-405d-778f-fcc77ceafb1a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 350.963786ms + duration: 259.149637ms - id: 15 request: proto: HTTP/1.1 @@ -1003,7 +1003,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1011,7 +1011,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 83803067-45a2-00eb-085c-faded184129a + - 44066a1d-a427-40f8-4b91-18961e20aeeb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1024,7 +1024,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1033,7 +1033,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:22 GMT + - Tue, 01 Aug 2023 07:33:58 GMT Expires: - "0" Pragma: @@ -1047,12 +1047,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3d313ec4-58f8-4990-7101-3cc3d8642784 + - b7953fa9-f8ca-4300-5132-dca3793063e7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 255.616381ms + duration: 389.340303ms - id: 16 request: proto: HTTP/1.1 @@ -1073,9 +1073,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b939da5d-91be-b181-ff33-ffd3ede38a20 + - cd7209ff-6b65-5483-a233-562758e283a6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1099,7 +1099,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:22 GMT + - Tue, 01 Aug 2023 07:33:58 GMT Expires: - "0" Pragma: @@ -1121,12 +1121,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 42651033-66ed-434f-4477-d22a290ef5d8 + - f7c3d8be-b12c-40d0-48b8-1db94b6dfd6a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 228.530327ms + duration: 191.216264ms - id: 17 request: proto: HTTP/1.1 @@ -1139,7 +1139,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1147,7 +1147,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fa3b9382-9eef-460a-ab69-9770f5a74687 + - 98037191-1bfd-a38e-c67d-50c426b4dbf6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1160,7 +1160,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1169,7 +1169,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:23 GMT + - Tue, 01 Aug 2023 07:33:59 GMT Expires: - "0" Pragma: @@ -1183,12 +1183,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0b4aca92-1712-4ee0-676f-eefca44e8afd + - 96e604c0-60ce-4563-6d1d-dcd23b544668 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 423.191495ms + duration: 270.558551ms - id: 18 request: proto: HTTP/1.1 @@ -1201,7 +1201,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1209,7 +1209,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9bb68e18-4fd2-ac97-a6cc-0c7dfc8550e2 + - 04790b42-56af-061b-e20e-9e65608e71b8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1222,7 +1222,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1231,7 +1231,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:23 GMT + - Tue, 01 Aug 2023 07:33:59 GMT Expires: - "0" Pragma: @@ -1245,12 +1245,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c5222c76-2ee8-47af-548f-a6945cd52dbf + - 92df34af-3446-4c09-68bf-bd65002f606e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 250.171172ms + duration: 433.37216ms - id: 19 request: proto: HTTP/1.1 @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1271,7 +1271,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6b8a11fd-6edb-cdd8-efbf-9c849afe3d37 + - 8291510d-f581-4e1d-ca6c-74365ba27fb2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1284,7 +1284,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1293,7 +1293,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:23 GMT + - Tue, 01 Aug 2023 07:34:00 GMT Expires: - "0" Pragma: @@ -1307,12 +1307,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c2c10b03-8f49-49e9-6c78-9a05b7b24643 + - 26f6f32c-8427-4120-4db9-8941cee9d07a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 239.521059ms + duration: 402.212402ms - id: 20 request: proto: HTTP/1.1 @@ -1333,9 +1333,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7f02c253-5fc7-39d1-0db1-3cc50ab8c617 + - d2bc9c1f-193a-0a5d-f99e-2bbc935927a8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1359,7 +1359,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 09:44:24 GMT + - Tue, 01 Aug 2023 07:34:00 GMT Expires: - "0" Pragma: @@ -1381,9 +1381,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a0c7a635-d0a0-48bb-7ed8-69b1bd6e6fa7 + - c57d671d-7f00-4ae4-6f2f-a03015c7327f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 356.469115ms + duration: 356.367191ms diff --git a/internal/provider/fixtures/resource_globalaccount_resource_provider.update.yaml b/internal/provider/fixtures/resource_globalaccount_resource_provider.update.yaml index 2cc0ddef..8cd35a77 100644 --- a/internal/provider/fixtures/resource_globalaccount_resource_provider.update.yaml +++ b/internal/provider/fixtures/resource_globalaccount_resource_provider.update.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3a463aed-5c31-8fe2-8ae5-2b266a270027 + - d9b2c6ee-2f01-257c-677c-498050545e3f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -34,7 +34,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:17 GMT + - Tue, 01 Aug 2023 07:34:01 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 98c4e649-9735-47de-4638-2561bd5ed1a0 + - dd926ced-656b-48f1-681f-b725465e2333 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 560.734767ms + duration: 195.782141ms - id: 1 request: proto: HTTP/1.1 @@ -75,7 +75,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -83,7 +83,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2cc4cc24-91d4-1eb6-04d5-aa84cfaf914e + - e8c510a8-65a3-a9c9-f64f-e7c4afa87442 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -96,7 +96,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:17 GMT + - Tue, 01 Aug 2023 07:34:01 GMT Expires: - "0" Pragma: @@ -119,12 +119,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5da9cf6e-412f-48f2-41d1-3c9b0538058b + - 0c2decd5-2e92-44ca-4040-c4db4014b3d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.177317ms + duration: 314.100447ms - id: 2 request: proto: HTTP/1.1 @@ -137,7 +137,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -145,7 +145,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 81015e41-66af-2d73-eda0-c9413eb1256c + - e6b78fbd-d8e5-5d63-2d7b-b0b22eb6483e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,7 +158,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:18 GMT + - Tue, 01 Aug 2023 07:34:02 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 32e5a05b-4954-4515-5a68-bd702bbdbfd0 + - 7f2e8ed5-9356-4cab-656b-f11717298e13 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 241.23142ms + duration: 219.803413ms - id: 3 request: proto: HTTP/1.1 @@ -207,9 +207,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2feef465-2bdb-d59a-dccc-fb154c4ddfd6 + - d57c48bd-f0fd-bf61-7493-5ad8b5976387 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:18 GMT + - Tue, 01 Aug 2023 07:34:02 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c64317fd-48b4-4503-44d4-a0fdddf18218 + - e11b83a3-5b75-4d8f-79ed-e67aebf13734 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.469275ms + duration: 304.680957ms - id: 4 request: proto: HTTP/1.1 @@ -273,7 +273,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -281,7 +281,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c609e21b-5cdd-e0f4-8fc6-8389041e23df + - f4a42adb-e58b-8763-a026-1e0cb3678dbb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -294,7 +294,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -303,7 +303,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:19 GMT + - Tue, 01 Aug 2023 07:34:02 GMT Expires: - "0" Pragma: @@ -317,12 +317,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4de8bfb3-0180-478a-5ddf-3685650b39ff + - ebe0381b-d756-43a3-6045-1aeef2051e5d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.013017ms + duration: 327.202283ms - id: 5 request: proto: HTTP/1.1 @@ -335,7 +335,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -343,7 +343,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d2b94391-9728-a1c7-fd12-4e0ea86a8138 + - 0e2b0206-1308-52a6-55ba-f9d108516d1b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -356,7 +356,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -365,7 +365,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:19 GMT + - Tue, 01 Aug 2023 07:34:03 GMT Expires: - "0" Pragma: @@ -379,12 +379,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a3b898f1-4170-43de-581d-bb9e8c5dffc2 + - 6959b862-0f62-4f6e-6379-333b0749db5a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 376.794299ms + duration: 230.911618ms - id: 6 request: proto: HTTP/1.1 @@ -405,9 +405,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 56492001-5b6f-fc76-b6d2-bc78aacd68ca + - 3f14c3ee-9fcb-7e26-e1d7-e67a5bd4067f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -431,7 +431,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:19 GMT + - Tue, 01 Aug 2023 07:34:03 GMT Expires: - "0" Pragma: @@ -453,12 +453,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d9cc5c14-158e-483c-5d15-600a33f289f4 + - bc58f8e7-bea0-4f64-7460-8f86212b1af6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 407.876271ms + duration: 182.477992ms - id: 7 request: proto: HTTP/1.1 @@ -471,7 +471,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -479,7 +479,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8ec1ab07-51d7-1c0e-5843-e26572775f84 + - afa67258-40cb-f49f-41f6-aeb7fdfd32b9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -492,7 +492,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -501,7 +501,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:20 GMT + - Tue, 01 Aug 2023 07:34:03 GMT Expires: - "0" Pragma: @@ -515,12 +515,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 57d128f5-2374-436c-536d-20e90a982164 + - 2d4506da-690b-43d1-773a-3c80028ad20f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 329.823099ms + duration: 379.705252ms - id: 8 request: proto: HTTP/1.1 @@ -533,7 +533,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -541,7 +541,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2aa9fd07-6aac-dce8-cfae-b870649fb255 + - 9e2b6a2f-004a-253c-ebc1-1805414ff460 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -554,7 +554,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -563,7 +563,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:20 GMT + - Tue, 01 Aug 2023 07:34:04 GMT Expires: - "0" Pragma: @@ -577,12 +577,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b8473a8-03de-44c3-4f8d-016689dd7bd8 + - 7b230c45-1185-4de5-4743-b2b101e0cb08 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 260.34002ms + duration: 287.239702ms - id: 9 request: proto: HTTP/1.1 @@ -603,9 +603,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 47bc719b-9b14-2669-dbbb-38c593441b47 + - 921429dd-3463-41c4-dc93-084fd52d9d07 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -629,7 +629,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:21 GMT + - Tue, 01 Aug 2023 07:34:04 GMT Expires: - "0" Pragma: @@ -651,12 +651,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7b9b5c08-46ff-4203-7b9e-984c7172a9c5 + - 19d0a166-584e-4535-5ae9-047376a61ebf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 399.614939ms + duration: 162.878885ms - id: 10 request: proto: HTTP/1.1 @@ -669,7 +669,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -677,7 +677,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 04978bc0-5e21-3375-2f35-cccabce5d073 + - 16bb672a-8dfc-a108-b68a-ffcff5381d67 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -690,7 +690,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -699,7 +699,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:21 GMT + - Tue, 01 Aug 2023 07:34:04 GMT Expires: - "0" Pragma: @@ -713,12 +713,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43e5fe21-9c71-498a-7c44-a138745b8b20 + - c645f69c-e5bd-44ba-5021-da2546aac2e6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 241.765182ms + duration: 270.056922ms - id: 11 request: proto: HTTP/1.1 @@ -731,7 +731,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -739,7 +739,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 039e77f2-819c-c013-45fd-4d8b414c1f87 + - a97df7a8-6115-1607-17e8-2eb12b17ba41 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -752,7 +752,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -761,7 +761,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:22 GMT + - Tue, 01 Aug 2023 07:34:05 GMT Expires: - "0" Pragma: @@ -775,12 +775,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 899024fa-643b-4bbc-7f47-3654905f5f8a + - 3567d261-0329-483e-52d0-622102ca7052 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 236.517724ms + duration: 356.005636ms - id: 12 request: proto: HTTP/1.1 @@ -801,9 +801,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4aed9a85-f513-77ef-102e-dea471b8ccd0 + - 4309f01e-932f-1c7e-81e3-bf817f59d228 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -827,7 +827,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:22 GMT + - Tue, 01 Aug 2023 07:34:05 GMT Expires: - "0" Pragma: @@ -849,12 +849,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 593a3cb9-ec4d-4d6e-421a-90ceb8b6af57 + - 497fe682-ceb6-4339-7e90-55f850ca5670 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 267.256746ms + duration: 184.655114ms - id: 13 request: proto: HTTP/1.1 @@ -867,7 +867,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -875,7 +875,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a51f7944-50b9-7063-7658-dad9ca813453 + - a414d363-c7c0-b230-052c-326dcbee11d3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -888,7 +888,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -897,7 +897,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:22 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -911,12 +911,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ff167ee0-b8cc-417e-6f29-b6c30c9bfcc6 + - 5d1f9dab-15e4-435c-7e8e-cfc83fd364d3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 312.565292ms + duration: 252.665687ms - id: 14 request: proto: HTTP/1.1 @@ -929,7 +929,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -937,7 +937,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 19c1a49d-3de6-334f-d087-8243379ce284 + - 40bc94d2-46ac-98a1-d3be-67d884e24f9f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -950,7 +950,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -959,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:23 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -973,12 +973,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3f15b42a-10ef-47d7-5e67-5ea62b04c688 + - ede098ce-c39b-4e44-7efe-02b4a3edfd8c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 239.472421ms + duration: 333.634335ms - id: 15 request: proto: HTTP/1.1 @@ -999,9 +999,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c9d34151-1f04-4f20-f936-d6dee313bfa2 + - 9d70ead1-c435-3ef6-04cb-c257727c16bd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1025,7 +1025,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:23 GMT + - Tue, 01 Aug 2023 07:34:06 GMT Expires: - "0" Pragma: @@ -1047,12 +1047,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6aa12733-8f50-4b25-4d06-8a7d34e3fe5b + - 1382dafe-8b57-432d-45a9-8c3af77b4521 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 216.525305ms + duration: 163.47988ms - id: 16 request: proto: HTTP/1.1 @@ -1065,7 +1065,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1073,7 +1073,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7ee1b220-6272-6dba-5a29-0987af53c717 + - 3483b492-567f-305d-9d9b-ca684d23ec83 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1086,7 +1086,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1095,7 +1095,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:23 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -1109,12 +1109,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7fe14f6c-2703-46d0-7d42-8c4645bc0ee5 + - f16a19da-429f-46cd-7baa-ce73c9f6cf53 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 235.586016ms + duration: 193.930415ms - id: 17 request: proto: HTTP/1.1 @@ -1127,7 +1127,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1135,7 +1135,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 76e85db3-0748-d1df-704e-eb98d353f127 + - d106fa45-5c72-a9ef-96dd-1a4d0cb8de2d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1148,7 +1148,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1157,7 +1157,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:24 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -1171,12 +1171,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f36f5d0e-f259-410b-6f01-25780c6daa75 + - 26cf9330-8db9-45a6-4955-dc9487cd3491 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 305.339637ms + duration: 308.128707ms - id: 18 request: proto: HTTP/1.1 @@ -1189,7 +1189,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1197,7 +1197,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 387e0cbc-619e-9b04-4043-19321cb950f2 + - 6f559488-f51f-6941-3c8d-e710c39ab082 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1210,7 +1210,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1219,7 +1219,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:24 GMT + - Tue, 01 Aug 2023 07:34:07 GMT Expires: - "0" Pragma: @@ -1233,12 +1233,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b6eb2533-f9c8-49e0-76e3-bb9a5397ee0f + - dd750c16-60a9-491a-6f86-d0ffcb6bdd20 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.141346ms + duration: 399.599357ms - id: 19 request: proto: HTTP/1.1 @@ -1259,9 +1259,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a0e5d4b-7cbe-1c59-5086-aa32f8f66159 + - 087838df-3ff7-012e-f3fa-548945e0fb15 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1285,7 +1285,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 27 Jul 2023 12:45:25 GMT + - Tue, 01 Aug 2023 07:34:08 GMT Expires: - "0" Pragma: @@ -1307,9 +1307,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 13efbd46-c096-499b-7481-a2fc29565477 + - f3d7d5df-490d-4e5d-5926-976fb713486b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 406.938668ms + duration: 371.267549ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection.import_error.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection.import_error.yaml index 029f387d..771076d9 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection.import_error.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection.import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ed66e99b-41ac-ab8e-b851-71804b1ac095 + - 519c64b0-d829-da14-d68b-6c3d473b767a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:46 GMT + - Tue, 01 Aug 2023 07:31:05 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 50d3dfbf-2a23-4e6a-74c2-3e33344e85aa + - 19a32189-b40d-419a-710c-f0a52fe7ca5c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 416.2423ms + duration: 224.833191ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f893b2f9-1361-dfd2-7847-a3ab3569e846 + - 7f36efc3-aae9-af8a-0139-1c9f1cf3f9d4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:47 GMT + - Tue, 01 Aug 2023 07:31:06 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2c1f04d0-214a-4fc2-7133-da5aae4abb85 + - 53aed057-a314-4155-4426-042066398a46 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 391.084ms + duration: 206.96578ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3df8d267-f733-c63b-64e1-d481b33e7a07 + - e3f560d9-5614-a1ae-47ca-4376f05a7f3e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:47 GMT + - Tue, 01 Aug 2023 07:31:06 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a14fe744-2315-4293-6a34-59114f454f6f + - 025ab830-65bc-4fe1-5b2a-6a51d06cb2a9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 404.0446ms + duration: 288.935575ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c2161b40-a467-1257-fe24-867b4e73e127 + - 3ccdf78a-7bd1-b1e8-ec0e-897d9cee2e6e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:47 GMT + - Tue, 01 Aug 2023 07:31:06 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c8c7bc1b-3620-4b77-637f-66e6df0e227e + - 7a6118a7-1498-498c-4782-43cd35a3e196 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 179.9553ms + duration: 173.276161ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 07209b3f-e8cb-7175-825a-031f731086bd + - dd474808-b448-2547-2669-6a08ce38057b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:48 GMT + - Tue, 01 Aug 2023 07:31:07 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3bc727f0-3d3d-4b42-545a-a7e34a080c00 + - b9245e7a-5778-49b5-4e43-e8481d6b297a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.5182ms + duration: 225.819529ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5888eb44-43d0-fe49-65d3-cd5854541d73 + - 2d9a1c98-d1ff-20fc-6a6f-7e4f802ae979 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:48 GMT + - Tue, 01 Aug 2023 07:31:07 GMT Expires: - "0" Pragma: @@ -379,12 +379,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 40ab17c7-a4b4-411b-64b8-c451388dd653 + - c2d219ba-cbbd-46b0-427e-f4c48a6e7204 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.3583ms + duration: 215.189902ms - id: 6 request: proto: HTTP/1.1 @@ -403,11 +403,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9618158a-40d3-35c4-a3da-b41698434438 + - 8677b022-5c41-5612-df73-a7be31632c5d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -431,7 +431,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:48 GMT + - Tue, 01 Aug 2023 07:31:08 GMT Expires: - "0" Pragma: @@ -453,33 +453,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7528857a-ec05-4728-4044-db2f2d4e119f + - ecf92823-0a6f-4403-6d74-3e72a6bb6b39 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 206.3008ms + duration: 385.59618ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cf101b4c-5312-c04a-0d14-0215d5220dd2 + - 47a93d7a-0c1b-8069-0602-7141d3372b14 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -490,18 +490,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:49 GMT + - Tue, 01 Aug 2023 07:31:08 GMT Expires: - "0" Pragma: @@ -515,33 +515,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8314b0ec-ba18-4370-608e-6ffa03611c27 + - 93381274-9e8a-41a4-79c2-35bda1c18467 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 446.1172ms + duration: 396.559486ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b718689d-819e-d784-c822-bb26f619b547 + - 37e8f430-5016-ab47-ee64-653d1f459f8e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -552,18 +552,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:50 GMT + - Tue, 01 Aug 2023 07:31:09 GMT Expires: - "0" Pragma: @@ -577,33 +577,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8495d973-6d14-45c1-4cb2-08c597aae494 + - d925a9fc-ff4a-4cb6-67e9-cc0017dc1c36 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.4447ms + duration: 282.030976ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4f403772-30c3-b26c-84f3-f7a7dd024f8a + - c6d300af-7526-0497-2d2e-7719158489e7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -614,18 +614,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:50 GMT + - Tue, 01 Aug 2023 07:31:09 GMT Expires: - "0" Pragma: @@ -639,33 +639,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e053bf00-dc64-4e83-4d94-89e31d3be5dc + - 3c46d510-091c-41c6-7e7c-ba4181e3a470 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 431.5557ms + duration: 212.693337ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 95565621-4f81-9c8b-0bc3-72f702c22427 + - 514a0356-1ad5-519f-b92b-030c65a971ce X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -676,18 +676,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:50 GMT + - Tue, 01 Aug 2023 07:31:09 GMT Expires: - "0" Pragma: @@ -701,12 +701,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6e1e6a9c-8bfe-4f0d-7b14-c5c4aedcae97 + - 3d817767-580e-4eed-7668-c710594681e7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.2157ms + duration: 212.29781ms - id: 11 request: proto: HTTP/1.1 @@ -725,11 +725,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3dbbc397-e9ef-32d8-2c1e-3b9609015d79 + - e163929e-a9f6-5a76-89b9-2a4c0f5b8cdf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -753,7 +753,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:51 GMT + - Tue, 01 Aug 2023 07:31:09 GMT Expires: - "0" Pragma: @@ -773,9 +773,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fdbe5671-6e76-403b-7867-afcca3a48661 + - 7ce88c01-9240-432d-43bf-a99cfadc9b18 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 180.9352ms + duration: 166.393704ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection.update.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection.update.yaml index ecbf8826..856f3269 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection.update.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection.update.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e54d8f5-cd55-e157-8c23-2395c61d8752 + - c7dc9d8a-3076-190e-aa34-d991b6051327 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:37 GMT + - Tue, 01 Aug 2023 07:30:57 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 13d94d00-0575-4c10-4560-ffb2a2aa0dc4 + - cefd997e-f08c-462f-680f-724b5a4f639a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 352.9561ms + duration: 222.314041ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eac05464-f360-b5e7-e254-34342b02b5aa + - 47df8ae7-5b48-7542-1e37-9f1763d6c0c9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:37 GMT + - Tue, 01 Aug 2023 07:30:57 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b4d3c7bf-7289-4bb1-618c-a2c4bac667d0 + - 0f284d73-8ae4-4578-58c9-61e86a53a89f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.6299ms + duration: 214.839498ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dabcd03a-60c1-6d0f-66a2-d3e3b8ea4f95 + - 417dde92-6c3a-acc0-4926-35313cb05f22 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:38 GMT + - Tue, 01 Aug 2023 07:30:58 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f20adece-cc0c-4b4f-5d3c-3b7386f38a14 + - 1ef46fdf-52e3-4d94-539a-bde9221f8a07 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 420.1497ms + duration: 220.228852ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8fe7f130-da5c-d7c0-7c4a-4e3ed0846f81 + - a1f3f44f-53fb-f923-43f6-7554efd3fd84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:38 GMT + - Tue, 01 Aug 2023 07:30:58 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e090ffec-11a6-434b-42f5-e843b69e16a7 + - 79140e5a-ff08-440c-5465-b98a5cdb5246 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 178.9213ms + duration: 196.724599ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce5bd56d-6dc9-41e3-e0d5-7d9ff83284b2 + - 3e01fb3c-5829-aa88-721a-f68557cdc245 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:38 GMT + - Tue, 01 Aug 2023 07:30:58 GMT Expires: - "0" Pragma: @@ -327,33 +327,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f7268d09-ea71-4769-73d3-13e5c4709df9 + - 767cfd36-fa41-4ca1-7dc3-bffb2ba2dd20 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 226.1058ms + duration: 144.376898ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9d87e555-0ab0-9006-91a9-692055029d9f + - 28171721-ca99-19a5-96a0-f4e269fb148f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -364,18 +364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:39 GMT + - Tue, 01 Aug 2023 07:30:59 GMT Expires: - "0" Pragma: @@ -389,33 +389,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8b0734b9-149a-46ce-4b9f-bbd6e128ef18 + - 9dffaec8-602c-46fb-6b82-9529de5863b6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.817ms + duration: 233.264121ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4b44cf53-c021-4c48-4f18-a53022d042e6 + - a34a4c4f-902b-452e-73eb-618e00948d7a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -426,18 +426,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:39 GMT + - Tue, 01 Aug 2023 07:30:59 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6d41a598-c88f-40df-7981-73b42fd7a4af + - 01262f84-707f-44a1-5d00-cb01aba92c26 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 399.1953ms + duration: 240.171962ms - id: 7 request: proto: HTTP/1.1 @@ -475,11 +475,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c082b266-daeb-8285-3da6-b548b851ff24 + - 6ae93a2d-ecc7-21a4-1d79-5a65090cce4f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:39 GMT + - Tue, 01 Aug 2023 07:30:59 GMT Expires: - "0" Pragma: @@ -525,33 +525,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 683ba0da-c4a5-4476-7756-36a9c8fafa1b + - 888f0787-64d6-49ca-77d8-37b388c68d4d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 213.3369ms + duration: 151.058625ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fad3c0a1-8e2c-619b-33d4-8c87a6d61922 + - 0a4618ab-467a-2725-2297-d87cf5a8d581 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -562,18 +562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:40 GMT + - Tue, 01 Aug 2023 07:30:59 GMT Expires: - "0" Pragma: @@ -587,33 +587,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1e5706a8-f438-4ef7-62a5-28a5424ae4bc + - f57f4cf2-8f03-4e49-793b-351945a2c4b6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.174ms + duration: 206.536579ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4444f250-9b67-8abb-b4c4-1b8e1d3e6aff + - 57a998ad-237d-342b-f588-2398b838a511 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -624,18 +624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:40 GMT + - Tue, 01 Aug 2023 07:31:00 GMT Expires: - "0" Pragma: @@ -649,12 +649,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 53408769-f2b4-4d7e-6329-22033cda9839 + - df1be434-def0-4d70-5710-2da718ee8cd0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 349.254ms + duration: 384.228489ms - id: 10 request: proto: HTTP/1.1 @@ -673,11 +673,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e0ea609f-b010-2656-21bd-db42fe6b8bc3 + - 01ecaafe-cd0a-4865-81f1-0e934deb9605 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -701,7 +701,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:40 GMT + - Tue, 01 Aug 2023 07:31:00 GMT Expires: - "0" Pragma: @@ -723,33 +723,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 534f0c1f-9d01-438e-72cb-300ddd6d73a5 + - a26d1ae5-7e6f-4826-40e2-2d1cd739569e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 140.1634ms + duration: 176.769009ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 03bc3e52-4f61-b728-e7c3-5415f484b352 + - daf6ce8b-f1f1-ef7b-6cec-b7eb8b9aa198 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -760,18 +760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:41 GMT + - Tue, 01 Aug 2023 07:31:01 GMT Expires: - "0" Pragma: @@ -785,33 +785,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b454f290-108f-4604-4625-c58efed93ff7 + - cedbbb4c-3fe0-40c5-7bf9-47a8edb1aea0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 416.9974ms + duration: 200.351446ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28c6dfbd-1aae-d111-897c-d4f8760cc1e8 + - 2ce3d055-8002-b799-48f0-cd6f5613010e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -822,18 +822,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:41 GMT + - Tue, 01 Aug 2023 07:31:01 GMT Expires: - "0" Pragma: @@ -847,12 +847,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c42252c6-c8a1-4543-669f-e05a231015c9 + - 818c6a7f-0846-470d-5e8e-b193e295fffe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.2207ms + duration: 283.091646ms - id: 13 request: proto: HTTP/1.1 @@ -871,11 +871,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 970674e0-e811-52fc-a7d1-2f7830a3ea5d + - ce6383ce-07bd-0f21-b78e-114eab4780c1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -899,7 +899,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:41 GMT + - Tue, 01 Aug 2023 07:31:01 GMT Expires: - "0" Pragma: @@ -919,12 +919,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 166588dd-f054-4b32-4498-65f698da8cbb + - 40c839d1-3868-4cfb-7400-68bd3d046f2e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 162.0763ms + duration: 222.1323ms - id: 14 request: proto: HTTP/1.1 @@ -943,11 +943,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a8d2dec-67fe-54bb-9158-1c7fe4ae3cab + - 2fcef650-c37f-7718-74fa-303f20001e7b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -971,7 +971,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:42 GMT + - Tue, 01 Aug 2023 07:31:02 GMT Expires: - "0" Pragma: @@ -991,12 +991,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ba3930b7-2af6-4d0a-4586-1272b0563f33 + - f8d9e300-4aaf-470a-5dff-f847da95b74b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 195.3604ms + duration: 295.872553ms - id: 15 request: proto: HTTP/1.1 @@ -1015,11 +1015,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8b345078-efed-9639-957e-1f398f7c4c7c + - ea07ab57-8398-b30d-2ffb-0cfd1ee0f879 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:42 GMT + - Tue, 01 Aug 2023 07:31:02 GMT Expires: - "0" Pragma: @@ -1063,12 +1063,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 00ffe012-c0e1-410a-70ea-0234c0ae302a + - 3bdd33de-c7d6-4e3e-4869-027803af3d9c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 155.5193ms + duration: 199.001897ms - id: 16 request: proto: HTTP/1.1 @@ -1087,11 +1087,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c47e61f6-83cf-a49c-9bd7-1a97f1534ebe + - e091ca58-7b12-0b05-0e2d-62884681e306 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1115,7 +1115,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:42 GMT + - Tue, 01 Aug 2023 07:31:02 GMT Expires: - "0" Pragma: @@ -1137,33 +1137,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 621997e5-f7dd-48c6-52fb-dce8fcc8623a + - b2ae4b51-e2ef-44d5-4865-241c5f3143bc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 187.5255ms + duration: 170.180702ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2668b9c0-088f-ce5a-1a13-923cf0b39d94 + - 3eca0b18-b022-dfac-9ef1-cd01513fdd23 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1174,18 +1174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:43 GMT + - Tue, 01 Aug 2023 07:31:02 GMT Expires: - "0" Pragma: @@ -1199,33 +1199,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a1b16abd-df42-4080-6f42-815adafae04a + - d9b74deb-bf98-4b60-5774-41fd7fb2ef44 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 381.0886ms + duration: 305.919712ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a9649385-5066-25ec-3404-3e6acf48f914 + - c1b60924-14d8-dd78-c049-990f913e5b85 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1236,18 +1236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:43 GMT + - Tue, 01 Aug 2023 07:31:03 GMT Expires: - "0" Pragma: @@ -1261,12 +1261,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2136bfeb-bdc0-44cb-6d7a-b65a57276e7f + - bf7ee6ab-3240-459b-77a3-2c44167a3818 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.5826ms + duration: 209.795338ms - id: 19 request: proto: HTTP/1.1 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 241bc192-054d-3e6f-bb48-861fbdd5b681 + - b8c7bd84-1abd-9ca4-08b1-64409ea61972 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1313,7 +1313,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:43 GMT + - Tue, 01 Aug 2023 07:31:03 GMT Expires: - "0" Pragma: @@ -1335,33 +1335,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d463a226-330f-4f1e-60fc-376e5a084e2f + - 63d94db4-3c6d-4d3c-4b19-76b422473841 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 165.3992ms + duration: 158.544088ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 26f9302e-fbfd-69db-adac-946fc2fda84f + - 59e36c37-f8b0-28ed-d122-1f3d8021831b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1372,18 +1372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:44 GMT + - Tue, 01 Aug 2023 07:31:03 GMT Expires: - "0" Pragma: @@ -1397,33 +1397,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a17b2220-d3e5-414b-5c84-449a6ca70321 + - 857dd554-0a87-4897-461e-c9dc262786af X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 425.8228ms + duration: 210.442947ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b365df36-338b-f3fb-1316-e2745f1fcecd + - 13ddbd79-47cc-b202-122c-d7c92e76619b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1434,18 +1434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:44 GMT + - Tue, 01 Aug 2023 07:31:04 GMT Expires: - "0" Pragma: @@ -1459,12 +1459,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 65364f66-237b-4181-772d-fbcf2d3df70d + - 8372b8de-7e33-4398-6902-c34e33026650 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 413.8283ms + duration: 192.625041ms - id: 22 request: proto: HTTP/1.1 @@ -1483,11 +1483,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 61d6fc1e-6df7-a617-077e-4d1c7657f340 + - b4c99e6d-c46e-899a-4a31-e6ad61bb66ea X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1511,7 +1511,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:44 GMT + - Tue, 01 Aug 2023 07:31:04 GMT Expires: - "0" Pragma: @@ -1533,33 +1533,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6286b887-3f3a-482c-4ba9-77172f9fe896 + - 6287241d-ee4d-4dca-7384-bcdd83fa9285 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 222.0287ms + duration: 162.192829ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 64af1b75-e516-3242-aa4e-3605d9211031 + - 507bc105-6cb1-c2e4-398a-5a89459c9942 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1570,18 +1570,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:45 GMT + - Tue, 01 Aug 2023 07:31:04 GMT Expires: - "0" Pragma: @@ -1595,33 +1595,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0e2e8452-0ae8-4829-439d-db15e73aaa69 + - 226f2650-4682-4de5-7c00-2bde930ca9ae X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.5976ms + duration: 226.007285ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8591b89c-3dc1-477b-b1fd-4a4f86a377b8 + - e5204026-527a-f847-81bc-33e0341d2802 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1632,18 +1632,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:45 GMT + - Tue, 01 Aug 2023 07:31:05 GMT Expires: - "0" Pragma: @@ -1657,12 +1657,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e83f6965-3a77-43d1-637e-e685a0314b38 + - 265c495d-c05e-40af-5021-12e0ecea5a3b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.4698ms + duration: 251.672491ms - id: 25 request: proto: HTTP/1.1 @@ -1681,11 +1681,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14c384dc-cb82-01f2-b2f1-c586fcad0ed8 + - 388bbf5c-ed90-0799-2168-4069a375ec7c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1709,7 +1709,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:46 GMT + - Tue, 01 Aug 2023 07:31:05 GMT Expires: - "0" Pragma: @@ -1729,9 +1729,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d42b9c6a-df6b-4440-7d6b-b88642942269 + - ac5ed9c6-ad2f-424e-6bd9-4882b5966705 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 175.116ms + duration: 156.803177ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection.yaml index 54b8c276..85f42019 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f77018b8-e7c1-052d-011b-8069d84e55f6 + - 92de054e-51fc-37a6-f2fb-d85f8f1b5fb9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:31 GMT + - Tue, 01 Aug 2023 07:30:52 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fe364886-9abd-4389-4935-2c449afa4a90 + - de336317-c92f-4989-7944-91d851036e01 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 882.8907ms + duration: 218.171576ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b032e1a0-83e6-199c-3867-2e8b73dba86a + - eebef299-5222-8f73-c96a-a23c57524ab1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:31 GMT + - Tue, 01 Aug 2023 07:30:52 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9ad00497-0558-4d21-7f80-b348081acffa + - 81cedbea-ecbb-4602-47cb-704818e3510e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 454.3993ms + duration: 198.029944ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9d81b999-ac80-933b-a5a7-e389f61da360 + - 03e2bc5e-d2df-f38d-492e-a3672a04d9f6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:32 GMT + - Tue, 01 Aug 2023 07:30:53 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2bdb6160-0127-4e8b-7a26-4b146ed08b85 + - e6cd0cb1-6e36-4089-738f-d86d07880fd0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 459.7411ms + duration: 200.434079ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3676e414-287e-3c67-de79-aec8808cf791 + - 5dee034a-4fe2-bee5-d95c-e25db81380a4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:32 GMT + - Tue, 01 Aug 2023 07:30:53 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - af3340d1-923c-43e7-7f3d-3c699bdf840d + - bbb3b2a3-8a92-469e-7cf4-973710ea6e81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 247.4381ms + duration: 297.888841ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a0079117-6b58-c66f-0a85-b4cdcd88a060 + - 79a3c3a7-81ba-b836-2a9e-90f232d0a731 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 07:30:53 GMT Expires: - "0" Pragma: @@ -327,33 +327,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 792494de-d9f7-43ca-5fe3-4cfa9b094b73 + - a704a51e-eb3c-424a-4687-6801ec8811a8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 276.6217ms + duration: 216.648481ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5c966169-894a-b67b-fac6-caa3106b33da + - dff7beeb-93e5-ebee-eefd-e9d636861cf2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -364,18 +364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 07:30:54 GMT Expires: - "0" Pragma: @@ -389,33 +389,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f97f1610-f477-40df-5270-064aadd31407 + - ef9507db-14af-4c99-6287-bf4c915459fa X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.0417ms + duration: 220.468343ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b807d8ed-57e1-b5be-05e5-449f0577bce3 + - 427e0ea4-d99f-1cb3-654f-7d3c255bc3f1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -426,18 +426,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:33 GMT + - Tue, 01 Aug 2023 07:30:54 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 79857d7f-7905-4d89-6759-73aedfd75f5f + - 57995686-7187-4f70-72d9-912a4e662db5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.6707ms + duration: 200.589643ms - id: 7 request: proto: HTTP/1.1 @@ -475,11 +475,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b08dfc58-5681-d72b-4442-3dd434b8f1d8 + - 2b427d7e-2eee-8b97-6674-26d68817e5b1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:34 GMT + - Tue, 01 Aug 2023 07:30:54 GMT Expires: - "0" Pragma: @@ -525,33 +525,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 97ba0d3c-3eb5-4250-756c-b67650df932e + - 168e6d8d-fcaa-4e15-424e-571b31529b16 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 186.0538ms + duration: 194.321775ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 80d0df07-2674-fbd5-0b0d-004a2ac6d252 + - 160dbef4-52df-9ee8-dc07-90c2eb5a94e3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -562,18 +562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:34 GMT + - Tue, 01 Aug 2023 07:30:55 GMT Expires: - "0" Pragma: @@ -587,33 +587,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bf46f52d-9995-4fa1-6245-e6f0ae6cb29e + - 6d843659-5d8d-40f6-49f3-0fd3a363e509 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 423.1978ms + duration: 294.423725ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 992e3a89-5ebe-6f8c-19a5-93aea7314fc4 + - fc22d614-36dd-e0e5-9d6f-cb5807486b54 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -624,18 +624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 07:30:55 GMT Expires: - "0" Pragma: @@ -649,12 +649,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e2d356b7-d1ed-4b96-4438-8b27b0fcf7e0 + - 6c1112d0-3b73-4c6b-48b6-e15afe20cb6c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 415.4003ms + duration: 276.697309ms - id: 10 request: proto: HTTP/1.1 @@ -673,11 +673,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0760d39d-3b52-3acc-aaae-fe76bb10ceea + - 831c6ed7-a89a-5b1a-30c6-7cb115523a41 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -701,7 +701,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 07:30:56 GMT Expires: - "0" Pragma: @@ -723,33 +723,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e311bd56-3456-4de9-475d-11591ded0dad + - 8c9c738a-f741-4a8f-4f17-fda9620247e1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 223.2539ms + duration: 223.164316ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b0680b95-5e79-cd9a-2c30-f1c72d9fd956 + - 222efdbf-7d1b-15bb-ab03-5fbdf11d862d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -760,18 +760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:35 GMT + - Tue, 01 Aug 2023 07:30:56 GMT Expires: - "0" Pragma: @@ -785,33 +785,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6ff30717-7dbb-4e53-6bda-c02748907787 + - 759a4869-325b-471f-64ef-22a71f08050c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 421.2609ms + duration: 297.310883ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7e381b21-7bd1-6122-84c8-eca0bc98e3c1 + - 71e087e5-a848-fe8b-8f2f-18c5040fb335 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -822,18 +822,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:36 GMT + - Tue, 01 Aug 2023 07:30:56 GMT Expires: - "0" Pragma: @@ -847,12 +847,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ad264ba5-2724-41ec-67c9-05749a1021a6 + - c50a9b52-375b-48f5-4ac7-44b9480f6b51 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 516.2712ms + duration: 217.117898ms - id: 13 request: proto: HTTP/1.1 @@ -871,11 +871,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4e90ba47-aa0e-d1a9-b774-6eeb2afec769 + - eb33df23-ef74-008e-a8d7-24a4692b90b4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -899,7 +899,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:43:36 GMT + - Tue, 01 Aug 2023 07:30:57 GMT Expires: - "0" Pragma: @@ -919,9 +919,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - baeb0f8a-9a63-4b37-74b9-89709f34a78a + - d76fb949-e001-4623-6082-046effb3d8af X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 244.6832ms + duration: 156.319523ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection_assignment.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection_assignment.yaml index d297a7d6..6315207f 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection_assignment.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection_assignment.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3f1983ed-ca38-e290-6a86-99eb836eecdd + - 3dd8a7ec-aaaf-a349-3197-fc94b77b0fda X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:51 GMT + - Tue, 01 Aug 2023 07:33:44 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 736c6777-b71a-4ab5-72d5-db3ae1cd572c + - bacb653a-1d2d-4624-78c6-da5b42793e00 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 735.1267ms + duration: 216.866801ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3cde526d-6838-0511-8fa3-5b1d4c34daa2 + - a63f3145-4072-bac6-a361-f4b1725a5cbf X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:51 GMT + - Tue, 01 Aug 2023 07:33:45 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8b9cf2dd-ae70-4def-432a-48096620da86 + - c4ce9954-772d-4082-5b1e-ca288cd856a8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 442.8114ms + duration: 175.665882ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 03e10578-0026-f2e3-661c-ac6960d04189 + - 8a747025-18a6-88ce-a128-6d001f16049b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:52 GMT + - Tue, 01 Aug 2023 07:33:45 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 03073c22-6f86-484f-611d-b01ba6cead4d + - 5bc7bcd8-e8d0-448f-6614-c50ad4e4a9f6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.9372ms + duration: 194.539144ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7cca0382-134b-a0fb-96b9-1b70e4f39fb0 + - aee46f3f-5fb6-24ff-ee55-8e03f26787ce X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":47,"active":true,"roleCollections":["Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":89,"active":true,"roleCollections":["Global Account Viewer"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:52 GMT + - Tue, 01 Aug 2023 07:33:45 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c5ca8577-d4f1-4456-710f-94d8dd446221 + - fc09a750-ca4f-4c48-7009-5982be2bdb23 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.5093ms + duration: 333.190271ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 33e19cc5-4357-424e-9c4a-9a55cd2aa6b7 + - 60c716a0-3d77-a9bf-abd6-89a1fc80f978 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:53 GMT + - Tue, 01 Aug 2023 07:33:46 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 16f7b85e-5858-42d3-4fa6-448792ab2a6c + - ca1e68ee-17ca-48b3-4822-f960085304e9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.6253ms + duration: 281.147517ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f4ead413-e49f-6530-13ed-872c5b0957f8 + - 0bd60318-9f12-ca44-3258-af04bc8b7399 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:53 GMT + - Tue, 01 Aug 2023 07:33:46 GMT Expires: - "0" Pragma: @@ -379,33 +379,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d749b771-dff8-4c78-588b-8c52d20eab5b + - e31ee610-4d01-4402-770a-6f7207c8efdc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.517ms + duration: 239.881134ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a398427-d227-e1a1-8841-3ebea9aa43d7 + - 85ecbb90-b47f-7696-2d80-8693fcf5e08a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -416,18 +416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:54 GMT + - Tue, 01 Aug 2023 07:33:46 GMT Expires: - "0" Pragma: @@ -441,33 +441,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7d881472-03e5-4ab7-4e23-5d04a08b64de + - 1ef84ac5-2a21-4993-42f0-476e839950a0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.2232ms + duration: 288.779812ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 788cc9c2-6ded-d28a-3280-509ce746dcdf + - 28697a34-c2b1-cb61-0257-a0ab1e8fa5d3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -478,18 +478,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:54 GMT + - Tue, 01 Aug 2023 07:33:47 GMT Expires: - "0" Pragma: @@ -503,33 +503,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 831a785c-9223-4868-5b5d-ff5b8c27cb35 + - 7459b60e-809f-495a-4f25-eedaba2a47a1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.7404ms + duration: 166.007406ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c547d06f-5d25-19a9-999f-2020a6377777 + - eb942ec9-3a0c-b270-2528-9c6adc834db1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -540,18 +540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:54 GMT + - Tue, 01 Aug 2023 07:33:47 GMT Expires: - "0" Pragma: @@ -565,12 +565,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 256dcaa6-c609-4cb4-533b-549a3fb4e6ff + - 3b1b1158-6eed-46bb-61e3-2598c0b79bfd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 347.9088ms + duration: 213.078564ms - id: 9 request: proto: HTTP/1.1 @@ -589,11 +589,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b9087edb-92c7-85c6-68e5-f2e077a4df27 + - a87c007f-3635-c9fe-469d-244c7af19e74 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -610,14 +610,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":48,"active":true,"roleCollections":[]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":90,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:55 GMT + - Tue, 01 Aug 2023 07:33:48 GMT Expires: - "0" Pragma: @@ -639,9 +639,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fabc8268-e24d-4abf-58e1-7a95e6bcafc8 + - e4d213b9-da1e-4ae7-4137-d9556429a7b9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 413.0836ms + duration: 458.657688ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_import_error.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_import_error.yaml index 5be60218..2e6ce91e 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_import_error.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 88d044f6-447d-062d-e6f9-e1544c10e7da + - 1e91d657-d697-04dd-21a4-1d0d3548be4f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:00 GMT + - Tue, 01 Aug 2023 07:33:52 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f64f16b8-bff6-463f-554f-e41fa7ddc58e + - 6b0fa561-1f3a-40ad-4ede-2c99c9d268bd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.1158ms + duration: 281.340278ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4703a1b7-a7b3-09a4-a388-61290582b32e + - 24263677-9b08-60cf-d909-a270565b28c0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:00 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 59cd60a8-1596-4b93-4113-0b205d1068cf + - b3f57567-0bf3-40bf-7d83-050d46ce7013 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.4125ms + duration: 411.959547ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d7352f2f-f05b-e917-0859-5c3afd35c327 + - 3aaa2bd0-4aa3-bdcb-90bb-08cfbfa08f21 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:01 GMT + - Tue, 01 Aug 2023 07:33:53 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fab1a2f7-81e9-4e20-75ed-81b0f6829910 + - ae722c42-5307-4852-40fb-12515c116df7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 368.6897ms + duration: 174.451297ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e98aa865-a0df-1670-5c4c-346bd39f5dac + - 9ea86cdf-a9df-b3d0-a123-668f7363bb25 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":49,"active":true,"roleCollections":["Global Account Viewer"]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":91,"active":true,"roleCollections":["Global Account Viewer"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:01 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b1963e04-f2b2-4ef2-5587-ffff6aa605b7 + - 782ca27a-e894-489b-4680-b4f7a6797d1d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 468.9336ms + duration: 378.308506ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7e9ffcba-7fa4-4e70-ffe3-33115824e2ac + - 5aaecd0a-5aa3-22d2-cc69-6caad4e8f528 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:02 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 07419035-cc72-446a-44a1-fd6e72267f81 + - 89c67185-0d1d-47fc-5b56-338ac34a8934 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 516.7505ms + duration: 168.028804ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7a0880fd-c579-e673-1f93-897e3fdf9ec4 + - d9cb6c1e-35eb-d474-e486-210386f38296 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:02 GMT + - Tue, 01 Aug 2023 07:33:54 GMT Expires: - "0" Pragma: @@ -379,33 +379,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 21c633c4-eb6c-4a0c-47be-5e83dafb379e + - d3f73f77-2090-47fd-5a4e-7e3fa33fa3db X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.3727ms + duration: 236.139558ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a4513b69-82b2-375c-b91e-dd5801b18d85 + - 1a060078-0769-4f3a-82c3-b0e900e014db X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -416,18 +416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:03 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -441,33 +441,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 65ea9c39-dc6d-4f44-5b1c-082b0b1764f6 + - 051e09f1-f22f-4f2f-5b7c-d212f80bb14a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.7641ms + duration: 327.068092ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 81cd61fe-b45b-a229-0948-c36bbcad9b84 + - eeae349c-6a73-b030-5bb0-3f792cb7aae7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -478,18 +478,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:03 GMT + - Tue, 01 Aug 2023 07:33:55 GMT Expires: - "0" Pragma: @@ -503,33 +503,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7c679404-cf03-400f-72fb-2cddad289760 + - 6836576c-8ca5-46ed-59c8-4731144caa96 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 444.9478ms + duration: 258.156015ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 645200ef-7e97-84b5-7069-4cd53189b9dd + - d1f75b31-a8a4-7081-c193-6c23c4540be9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -540,18 +540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:04 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -565,33 +565,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 140bd3b6-09b1-4d44-4039-acf4c054e46e + - ba2bfd16-7626-4e74-5687-a8bf25c850fe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 431.1552ms + duration: 203.164139ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 38e33cde-0012-6298-a14c-df520dea4cce + - 17328fdd-5959-b853-1cb0-44def3eab72c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -602,18 +602,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:04 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -627,12 +627,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bb2d04eb-29f9-4493-4265-c55fe60c20b9 + - 0d24b8b1-f0a5-4c9c-5585-9a9d58b4b10a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 438.3131ms + duration: 301.520872ms - id: 10 request: proto: HTTP/1.1 @@ -651,11 +651,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b7485595-e397-b5fd-4df7-114ec9bb82fa + - 32c8b57b-5272-8df4-f4ca-5e7f1d9b01a8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -672,14 +672,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":50,"active":true,"roleCollections":[]}' + body: '{"id":"86535387-54aa-4282-af13-67dd50cdd13c","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":92,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:45:05 GMT + - Tue, 01 Aug 2023 07:33:56 GMT Expires: - "0" Pragma: @@ -701,9 +701,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 368875bb-c2d1-450e-6e0c-8d145371a72d + - aa6a0d30-5eb7-4de6-74bb-87f9c805afa9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.1654ms + duration: 420.130205ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_with_origin.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_with_origin.yaml index 443c936d..54df4865 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_with_origin.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection_assignment_with_origin.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b8e56861-1869-9b11-8e31-a3c3c39c1dac + - 8ecd8e75-4d18-3a42-120e-95a4705a7fdb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:55 GMT + - Tue, 01 Aug 2023 07:33:48 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6f384e24-b714-4c6b-56e5-fc69e50b1556 + - 942f3689-59fe-4398-4961-4eabe7908fe4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 425.9349ms + duration: 192.633473ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 89a99782-1607-ae3f-7d17-c9e8cc01fa68 + - 0e4db5b2-ebb2-47ad-63cf-8b2c1a18366f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:56 GMT + - Tue, 01 Aug 2023 07:33:48 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8e0679ce-06aa-419a-646f-35289d31850e + - 56fedecc-9588-4102-7551-ef245f75b95e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.3021ms + duration: 234.162916ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3f1325f8-0efc-8884-c7a9-83d460d757e1 + - 3d6e0a06-11ac-43cb-2eb5-60d9dafe9555 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:56 GMT + - Tue, 01 Aug 2023 07:33:49 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bcb19cf7-94c3-4074-78ca-89577a8b3506 + - 4876ca6c-8c5e-4249-725e-d9238388ff65 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 374.1476ms + duration: 309.377738ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8b98e005-8e34-e339-3462-0cf21261f1f7 + - cb7b9f3d-ecd3-3a88-a0c9-e662debd614b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"c316226a-a6dc-4fab-9c93-81d8c1deadfe","username":"john.doe@test.com","email":"john.doe@test.com","givenName":"John","familyName":"Doe","origin":"terraformint-platform","externalId":"I000000","lastLogonTime":1685617807221,"previousLogonTime":1685563657315,"zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":39,"active":true,"roleCollections":["Global Account Viewer"]}' + body: '{"id":"2bba6cb1-53f9-4528-b319-0cf80eb90e7c","username":"john.doe@test.com","email":"john.doe@test.com","origin":"terraformint-platform","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":1,"active":true,"roleCollections":["Global Account Viewer"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:57 GMT + - Tue, 01 Aug 2023 07:33:49 GMT Expires: - "0" Pragma: @@ -255,33 +255,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 991b899b-30de-411a-7e79-8265f72b9924 + - c674edb9-c468-4aba-66a7-f805723bcc11 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 316.5989ms + duration: 376.912448ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 18afd528-c40e-a1f8-9195-9b02ffa0715b + - 57bec51d-67c8-595a-bce1-198509e641ca X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -292,18 +292,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:57 GMT + - Tue, 01 Aug 2023 07:33:50 GMT Expires: - "0" Pragma: @@ -317,33 +317,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5eb997ec-8bab-4d3b-7860-52e90cf9044f + - 58efe915-39f9-4d80-4c0b-b04264909c7a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.287ms + duration: 310.207869ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 23ae792b-ba9c-5435-5af0-4c3a157a1b73 + - fd5dbe49-a308-b64c-57fa-544ff87d1a65 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -354,18 +354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:58 GMT + - Tue, 01 Aug 2023 07:33:50 GMT Expires: - "0" Pragma: @@ -379,33 +379,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3b6d68b9-f7ed-40a2-46c2-87b7fbd46f5d + - 06b08464-af6d-4cc9-7a4e-3cd18bc73e7d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.115ms + duration: 271.690473ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 79ec6b22-49f0-4a49-bc71-1cab471b9491 + - 71138b6b-adf8-804e-03fd-363a345bf992 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -416,18 +416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:58 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -441,33 +441,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ea430754-2c85-4f12-55d9-ec7d6677dcd7 + - c323b12f-2b89-4efd-5473-ae649c26063c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 345.8232ms + duration: 268.362765ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 08fa4d02-616b-80e6-2712-9a86cb23dce0 + - 5dd6e5bf-37aa-c550-e3eb-290f1ad4ae64 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -478,18 +478,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:59 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -503,33 +503,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7cf0c957-3253-4f5a-603f-05bdd9045507 + - 2cc42979-5bf5-4848-4975-5cfdd93482a6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.3862ms + duration: 305.229505ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 35565e7d-effd-edc5-940c-607717b190e6 + - a9524c20-1568-281a-2854-5364c7b3d6bc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -540,18 +540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:59 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -565,12 +565,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8e20dbd5-22f2-4bd3-673d-799b32e92521 + - 37d2956c-20b0-400f-4c5b-1a2099b57787 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.8065ms + duration: 168.714598ms - id: 9 request: proto: HTTP/1.1 @@ -589,11 +589,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - feeecd53-ef05-c98a-de51-c620c0db7355 + - 88b8a8c6-d786-8d38-2266-44be9d15b808 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -610,14 +610,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"c316226a-a6dc-4fab-9c93-81d8c1deadfe","username":"john.doe@test.com","email":"john.doe@test.com","givenName":"John","familyName":"Doe","origin":"terraformint-platform","externalId":"I000000","lastLogonTime":1685617807221,"previousLogonTime":1685563657315,"zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":40,"active":true,"roleCollections":[]}' + body: '{"id":"2bba6cb1-53f9-4528-b319-0cf80eb90e7c","username":"john.doe@test.com","email":"john.doe@test.com","origin":"terraformint-platform","zoneId":"03760ecf-9d89-4189-a92a-1c7efed09298","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":2,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:44:59 GMT + - Tue, 01 Aug 2023 07:33:52 GMT Expires: - "0" Pragma: @@ -639,9 +639,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 94a41263-da29-4d6a-672b-4943dde28499 + - 4a2fbb6c-64fe-400a-7572-e9d9fe38e2ea X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.6657ms + duration: 388.004634ms diff --git a/internal/provider/fixtures/resource_globalaccount_trust_configuration.exists.yaml b/internal/provider/fixtures/resource_globalaccount_trust_configuration.exists.yaml deleted file mode 100644 index 2662fe0b..00000000 --- a/internal/provider/fixtures/resource_globalaccount_trust_configuration.exists.yaml +++ /dev/null @@ -1,263 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 4cd90beb-2644-509f-2c38-9dc7383bd34c - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 15: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 3907b2f2-eaba-4335-4789-e152124bfc32 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 1.171182268s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 945e550f-c8c9-c8a8-bbf1-df086a7bd81a - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 15:03:30 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 529737b4-f456-46bc-6f14-502bf0c1c5d4 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 588.900853ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - fb0f1cf4-3e54-39bb-cfe6-b4dc2a77b535 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 15:03: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 5416ef89-afe8-4325-6f17-544312c1e86b - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 588.563407ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 110 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"globalAccount":"terraformintcanary","iasTenantUrl":"terraformint.accounts400.ondemand.com"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 5eff9ad7-b2ba-f380-8b56-aae1bf137054 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?create - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: Limit of a maximum of Custom Identity Providers per GlobalAccount has been reached. - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 15:03: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-Backend-Mediatype: - - application/json - X-Cpcli-Backend-Status: - - "400" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - c0af2953-1d33-4730-5f11-2b01a9000da5 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 360.573048ms diff --git a/internal/provider/fixtures/resource_subaccount.yaml b/internal/provider/fixtures/resource_subaccount.yaml index 39d628e2..0b418808 100644 --- a/internal/provider/fixtures/resource_subaccount.yaml +++ b/internal/provider/fixtures/resource_subaccount.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a9133ee0-3f16-0452-3447-029e047db8b3 + - 0e8e3659-3367-cb1a-66b4-e789719b788e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:38:55 GMT + - Tue, 01 Aug 2023 11:59:41 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6b7447b4-5405-45d1-485f-b9f4453d88fa + - 4b015182-e0d4-44a8-7cbc-25ee3f8949fd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 558.2497ms + duration: 857.436527ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9d82d541-c7d1-c2b7-5291-980e2eba6a84 + - 77f4c901-52d8-e671-2e20-eeec63299bf1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:38:55 GMT + - Tue, 01 Aug 2023 11:59:42 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c70f9547-d500-48f1-4c41-38b9ec6faf83 + - 2c07a5ce-b0eb-4872-574a-f01eab23d2ef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.9265ms + duration: 338.815397ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b53b2ddb-261d-674c-c1ac-ae9ced516c12 + - ac604e22-9a30-3eef-21b9-c912023ec481 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:38:56 GMT + - Tue, 01 Aug 2023 11:59:43 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ae2ebd43-b1fe-4465-78d8-955f67fe6eab + - 3ab1f040-cfd0-4db7-7eb4-2f4c28caba2b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.8727ms + duration: 580.682679ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0ce4bce8-393c-3381-ca6a-2289a009349a + - e68c865b-16ae-530e-e077-0ca8e9f69816 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:38:56 AM","jobId":"2892573"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 11:59:43 AM","jobId":"2958355"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:38:56 GMT + - Tue, 01 Aug 2023 11:59:43 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 65f2b127-db18-4866-52d3-4ebbc73a72f6 + - 4aa16424-0dc0-4612-676b-0c20ed1a2f23 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 540.6674ms + duration: 546.156074ms - id: 4 request: proto: HTTP/1.1 @@ -273,17 +273,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f8867258-7ecc-ffcb-9892-821769ac3418 + - 1ece143c-3a6c-0d7c-0007-c04dc60c1aa8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:38:57 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 11:59:44 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:01 GMT + - Tue, 01 Aug 2023 11:59:49 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 31602b82-69da-4c0b-4765-df13121ed8eb + - 0466819c-c9d6-4b08-4575-165886a474f4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 250.2289ms + duration: 367.598639ms - id: 5 request: proto: HTTP/1.1 @@ -347,17 +347,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8efb8ce4-481f-327d-54da-60f81727ebe3 + - db5afd30-5865-57bf-db83-439ee2ffc22a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:38:57 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 11:59:44 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:07 GMT + - Tue, 01 Aug 2023 11:59:54 GMT Expires: - "0" Pragma: @@ -403,12 +403,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0292ba28-28f6-4659-5965-5929b07ccb19 + - 64f1bb6d-ec71-4e91-44c6-981c21f4f553 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 968.2999ms + duration: 401.729372ms - id: 6 request: proto: HTTP/1.1 @@ -421,17 +421,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae6c39ed-9e62-2c7f-5924-1c7f750bd031 + - f591a5b3-94f7-6237-12bd-e0f06a52a3fa X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -448,14 +448,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:08 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 11:59:59 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:18 GMT + - Tue, 01 Aug 2023 12:00:05 GMT Expires: - "0" Pragma: @@ -477,33 +477,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 667f27a4-625c-46de-4345-b0140102a97b + - 9c175bf1-e554-4c19-66df-7484491c0777 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 179.5592ms + duration: 349.00121ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9459a6b3-c110-8fe7-4906-41864ca935a5 + - 4ae6b4ad-5ecb-b6ea-c0d9-43c47c775b6f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -514,18 +514,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:18 GMT + - Tue, 01 Aug 2023 12:00:05 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e41e4b9b-3305-4241-6243-a9b2a7bb7b43 + - d2c4f1d8-74e1-4317-6dfe-5862f36a7176 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.3926ms + duration: 485.076382ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - be804a69-54de-9e4e-3602-1df783fc07c2 + - c696af00-7418-5d3e-43f4-3e71f227ffc8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:18 GMT + - Tue, 01 Aug 2023 12:00:06 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9f862536-70ca-4bef-5761-3a2da6018715 + - c6dc11d1-3c73-40eb-7205-7e699ea28c5c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 336.0098ms + duration: 322.005096ms - id: 9 request: proto: HTTP/1.1 @@ -619,17 +619,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c7eac1d-6a6f-caf0-5048-1fd74886d2f2 + - 8b998873-fea6-606e-50e0-402ba1815b93 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:08 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 11:59:59 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:19 GMT + - Tue, 01 Aug 2023 12:00:06 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 98abbbe1-5245-4e0a-69f3-58ad17dc7287 + - 683b3395-e5ee-4920-4f1f-6b4bc9886e73 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 183.1816ms + duration: 289.62238ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e5131db-3610-dc09-e0cd-cc3cb73bb8ae + - cf50d1c4-eb89-6506-2c69-175d0d010b41 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:19 GMT + - Tue, 01 Aug 2023 12:00:06 GMT Expires: - "0" Pragma: @@ -737,33 +737,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2cc39577-e29f-464c-4f4f-474765c32c6e + - 410c454f-b4bc-4f9d-47ad-3358f4c135b2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 368.536ms + duration: 366.179815ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 36d2f6bc-3862-e552-967d-725d317e5be4 + - 836e42af-8bc8-07f6-3ef2-383d40916a21 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -774,18 +774,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:20 GMT + - Tue, 01 Aug 2023 12:00:07 GMT Expires: - "0" Pragma: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 74edfc90-4763-4f86-77a6-89f1e4884141 + - 9b3c87b5-2871-4a22-40ab-1b6d80e4107a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 354.9151ms + duration: 409.779791ms - id: 12 request: proto: HTTP/1.1 @@ -817,17 +817,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cc891ae2-be56-6298-e0b5-80ac21808bf1 + - 02970ac6-a9f9-b16c-9cc4-8de520cdda44 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -844,14 +844,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:08 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 11:59:59 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:20 GMT + - Tue, 01 Aug 2023 12:00:07 GMT Expires: - "0" Pragma: @@ -873,33 +873,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 648498e1-f149-40e7-72d4-52d588810ee0 + - 3b0c56d5-300d-46d5-4b73-055bd24fa498 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 198.5477ms + duration: 210.345817ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f5878bf3-ce61-ff6f-0617-c92e52a83177 + - f849b059-0a6c-bb57-e20e-c6e1ff0b3562 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -910,18 +910,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:20 GMT + - Tue, 01 Aug 2023 12:00:08 GMT Expires: - "0" Pragma: @@ -935,33 +935,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb30456f-32bd-4505-43c6-63c99ff5a843 + - 898f99c3-8185-4429-777f-b1f2f283ab82 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 461.9082ms + duration: 406.622996ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6bca7d3d-0ed5-cfdd-8375-34835e8c880f + - fc19d16a-41ff-b3bc-e13a-3f1d8c9e7ee7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -972,18 +972,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:21 GMT + - Tue, 01 Aug 2023 12:00:08 GMT Expires: - "0" Pragma: @@ -997,12 +997,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ecf99a32-4afb-44fc-679d-526ba30db83a + - 94b1008d-a9c7-45b1-5e5c-da9739482bfb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.8311ms + duration: 376.952152ms - id: 15 request: proto: HTTP/1.1 @@ -1015,17 +1015,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 68622061-b941-4fc2-76dc-7d875cedb9e1 + - da6bcd07-f1f3-8232-478b-41b168e18dd3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1042,14 +1042,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:28 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:28 GMT + - Tue, 01 Aug 2023 12:00:09 GMT Expires: - "0" Pragma: @@ -1071,12 +1071,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 25d2d2b3-284b-43f7-4d60-8d7ceef310e9 + - 36f9b9c9-e28f-40d8-5ed7-ebd43712b8e8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 338.0391ms + duration: 315.908503ms - id: 16 request: proto: HTTP/1.1 @@ -1089,17 +1089,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 29f1df33-9159-f11c-da24-75d0653a80f8 + - 1354d853-7dde-5a03-cbc0-561bbb2fca21 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1116,14 +1116,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:28 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:39 GMT + - Tue, 01 Aug 2023 12:00:14 GMT Expires: - "0" Pragma: @@ -1145,33 +1145,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4889ea19-c01e-4668-74ca-ee00a37fb157 + - 03ef71cc-5154-4ebb-7bd9-1547068b9899 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 198.9595ms + duration: 234.300991ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2004b04c-93ba-77b9-1edd-3ef29f4c4619 + - 72cffe5d-67ef-29e5-4579-10d6f578260f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1182,18 +1182,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:45 GMT + - Tue, 01 Aug 2023 12:00:14 GMT Expires: - "0" Pragma: @@ -1207,33 +1207,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 62c03bfe-6240-483a-532b-29b4098327ef + - f1986e85-2cb5-496f-5d52-d22dbca7693b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 484.7589ms + duration: 361.886089ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 81fba3c6-7c64-c192-98d1-8396102fcae1 + - 8e3170b1-50a1-ba54-5e28-84a26dced3b0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1244,18 +1244,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:45 GMT + - Tue, 01 Aug 2023 12:00:15 GMT Expires: - "0" Pragma: @@ -1269,12 +1269,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2b11f219-7fa7-4fea-4416-74d6c1473540 + - 0fe83799-ba26-414a-5f47-0bedcc6ff891 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 345.0235ms + duration: 214.388682ms - id: 19 request: proto: HTTP/1.1 @@ -1287,17 +1287,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cdd45115-83c4-f313-033f-90d956e8952a + - 1295d8b3-e990-ba21-b68b-e54982782a11 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1314,14 +1314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:28 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:46 GMT + - Tue, 01 Aug 2023 12:00:15 GMT Expires: - "0" Pragma: @@ -1343,33 +1343,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e023d36a-54b7-4b5f-6275-a24488a33a19 + - b794efcf-558a-4e87-6fbf-dcda575e8996 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 198.8744ms + duration: 282.293152ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 004d9c12-5d42-d476-bd36-252aa58e3795 + - aebc48c0-4b29-6a38-4d4a-5fd1d21d0c0a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1380,18 +1380,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:46 GMT + - Tue, 01 Aug 2023 12:00:16 GMT Expires: - "0" Pragma: @@ -1405,33 +1405,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6523499d-a0dc-42b5-6888-83836267ccd4 + - f42a8f95-16d0-4a17-5f4f-c13c56b728a6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 346.8451ms + duration: 504.436627ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a6161286-35fc-b673-c93c-c7104384fb82 + - 286582dd-e015-cd2a-bdaa-0d134c3b1b8e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1442,18 +1442,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:47 GMT + - Tue, 01 Aug 2023 12:00:16 GMT Expires: - "0" Pragma: @@ -1467,12 +1467,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d2e4f6c5-67df-41a7-47ae-38f42e7aa19d + - 20590004-1db8-4556-4495-b4ed538346ca X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.52ms + duration: 298.762983ms - id: 22 request: proto: HTTP/1.1 @@ -1485,17 +1485,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2e6464be-acf6-ce5e-af50-1d921fdc5501 + - b93b49ed-73ff-a48c-d6a3-7d125c0eb481 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1512,14 +1512,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:28 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:47 GMT + - Tue, 01 Aug 2023 12:00:17 GMT Expires: - "0" Pragma: @@ -1541,33 +1541,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0096ac8-6bcf-4bc8-7189-0c849be8d43a + - 46263a9d-758d-4876-5dec-29be230bea7e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 175.2952ms + duration: 182.060779ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 11f4c167-c891-4f07-434d-52c0aaae4ef4 + - 3c9129a4-873e-fe5e-64ce-13f0b135c73c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1578,18 +1578,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:47 GMT + - Tue, 01 Aug 2023 12:00:17 GMT Expires: - "0" Pragma: @@ -1603,33 +1603,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8d4801d6-307f-4367-5513-f728d1bbd192 + - 30feae74-0a14-4626-6608-a06dc177f7e3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 337.6692ms + duration: 209.157726ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f5aab44d-a4dd-8c33-1589-cd988917d8a0 + - 2bf3c46f-4549-9b76-4fa0-e719ed162643 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1640,18 +1640,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:48 GMT + - Tue, 01 Aug 2023 12:00:17 GMT Expires: - "0" Pragma: @@ -1665,12 +1665,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9b41f63d-95a5-4786-620f-d5962f865081 + - bebaef73-00b5-4401-5b34-1e6fcc5cb2df X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 350.9333ms + duration: 206.899157ms - id: 25 request: proto: HTTP/1.1 @@ -1683,17 +1683,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","forceDelete":"true","subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"confirm":"true","forceDelete":"true","subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5ad3a831-4c3c-5af0-481e-90af0d265b46 + - b282deac-424c-a42a-d620-697eeb2214d4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1710,14 +1710,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:28 AM","jobId":"2892591"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:09 PM","jobId":"2958360"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:48 GMT + - Tue, 01 Aug 2023 12:00:17 GMT Expires: - "0" Pragma: @@ -1739,12 +1739,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5e617731-929b-4713-6050-d2460bfdb752 + - 8f76f5bc-5422-4c03-7d26-1c010aa23d87 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 192.481ms + duration: 237.857326ms - id: 26 request: proto: HTTP/1.1 @@ -1757,17 +1757,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1311fe0f-cab0-7166-62ba-cfbe14fad4ba + - 43ee77b6-3096-4018-b563-5aa6e9a1ccff X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1784,14 +1784,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:49 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:18 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:53 GMT + - Tue, 01 Aug 2023 12:00:23 GMT Expires: - "0" Pragma: @@ -1813,12 +1813,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 738c1fec-a21d-4a21-7c13-0bac882bd886 + - ac610405-8d87-476a-4d0a-c4954a813d10 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 177.9084ms + duration: 214.500389ms - id: 27 request: proto: HTTP/1.1 @@ -1831,17 +1831,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9764fbde-1634-ba26-db62-dc28749b9306 + - 73550ba1-1ad0-46c5-dde9-6ee866ff3d19 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1858,14 +1858,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:49 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:18 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:39:58 GMT + - Tue, 01 Aug 2023 12:00:28 GMT Expires: - "0" Pragma: @@ -1887,12 +1887,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a9bef755-ab2d-4f64-4f28-dc1590d5fc0c + - a615ed7c-0071-4a36-4812-ea91174d63d8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 206.982ms + duration: 326.989384ms - id: 28 request: proto: HTTP/1.1 @@ -1905,17 +1905,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e6d45b8-a938-ce1d-3ce5-ce2a4d8bb8b2 + - 32c745c9-9403-a8ea-e3a9-e8970dfa82b8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1932,14 +1932,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"9b29595d-2091-4c20-b606-5a752e107883","technicalName":"9b29595d-2091-4c20-b606-5a752e107883","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:38:56 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:39:49 AM"}' + body: '{"guid":"f8c539e7-b345-4086-a723-ff41302bfc83","technicalName":"f8c539e7-b345-4086-a723-ff41302bfc83","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 11:59:43 AM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:18 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:08 GMT + - Tue, 01 Aug 2023 12:00:38 GMT Expires: - "0" Pragma: @@ -1961,12 +1961,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b5437ee7-931c-4ccd-6dd6-d06f07f212e2 + - 72fec7c3-b451-43ca-5dd5-0070b152a3e5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 185.0179ms + duration: 360.017359ms - id: 29 request: proto: HTTP/1.1 @@ -1979,17 +1979,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"9b29595d-2091-4c20-b606-5a752e107883"}} + {"paramValues":{"subaccount":"f8c539e7-b345-4086-a723-ff41302bfc83"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 896b06ac-ff9f-a958-6abc-85b76e441aa2 + - 2706a203-0770-a29d-2e24-5b6f2e4b4275 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2013,7 +2013,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:19 GMT + - Tue, 01 Aug 2023 12:00:49 GMT Expires: - "0" Pragma: @@ -2035,9 +2035,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7ce931e5-ba3d-4392-7952-f8504790be84 + - 47b958ee-a4c6-40bb-4874-61e506ed518f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 206.7254ms + duration: 352.467822ms diff --git a/internal/provider/fixtures/resource_subaccount_change_to_used_for_production.yaml b/internal/provider/fixtures/resource_subaccount_change_to_used_for_production.yaml index ddf2d37e..52166580 100644 --- a/internal/provider/fixtures/resource_subaccount_change_to_used_for_production.yaml +++ b/internal/provider/fixtures/resource_subaccount_change_to_used_for_production.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2d5e09f0-067d-3103-8b05-fc2a8b5f3e62 + - 68137a91-4ef8-7a0b-bda9-6a423e37dfd9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:28 GMT + - Tue, 01 Aug 2023 12:01:56 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ee6ae62d-70a7-4314-456b-85e7779b777a + - 2044e3c6-9f98-45a6-7a8e-01f1a0fa741d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 609.7538ms + duration: 258.899954ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 616c6f76-0375-d423-79c6-338315f828b3 + - ea6dcf46-ee06-1e0b-e6d4-4a7c4c9dafb2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:28 GMT + - Tue, 01 Aug 2023 12:01:57 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a68dce86-6d32-44bb-58d9-f5b2f5c294cb + - d4e41cd5-603b-41c0-48e5-5e2edc867ab0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 437.0903ms + duration: 317.97914ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 08e913d7-8519-cb38-09f0-38bfa73a0ba4 + - 586990e4-9c83-ab46-04f5-e64637ef7625 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:29 GMT + - Tue, 01 Aug 2023 12:01:57 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0d357515-6710-4722-6baa-dd5b0880fb13 + - 858ceb28-9ebc-4f27-74c0-1c62dcefb8b0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 477.6655ms + duration: 214.765844ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae91595b-0e5a-2ad7-7b63-1e12b2e30c11 + - a364dc4c-5d40-95f2-76c3-0b0c60ef2750 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:29 AM","jobId":"2892732"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:58 PM","jobId":"2958381"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:29 GMT + - Tue, 01 Aug 2023 12:01:58 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b01dd029-428d-4742-54d2-379d6acee78b + - 681a819b-0c85-4365-6759-189bd79fe707 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 450.9892ms + duration: 596.430648ms - id: 4 request: proto: HTTP/1.1 @@ -273,17 +273,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b5ca9808-4471-14a5-bf9c-acaa3c40f228 + - 4e0a3f27-4c34-525b-25bb-74b33be08ee4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:30 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:59 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:34 GMT + - Tue, 01 Aug 2023 12:02:03 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5d7801f4-5754-4ac2-5d34-1d816cd7e7b6 + - 0aa5893d-5771-462e-40f0-6b3247395ad3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 253.9855ms + duration: 198.479298ms - id: 5 request: proto: HTTP/1.1 @@ -347,17 +347,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 75f0df0a-1e02-0d70-8c0d-2ff500467e9d + - 7a5728df-c7d2-e8ea-e58d-619d4968b2eb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:30 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:59 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:40 GMT + - Tue, 01 Aug 2023 12:02:08 GMT Expires: - "0" Pragma: @@ -403,12 +403,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e312539a-219b-4a20-6482-a2fdf1c2ff20 + - e3a46471-ae87-4a93-51cc-dc849c503adc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 246.0732ms + duration: 237.915759ms - id: 6 request: proto: HTTP/1.1 @@ -421,17 +421,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fb00b555-fd34-43d1-de74-990c2085cac1 + - 1adbde67-97f5-a4f8-f0c9-2808667585bf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -448,14 +448,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:48 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:14 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:50 GMT + - Tue, 01 Aug 2023 12:02:19 GMT Expires: - "0" Pragma: @@ -477,33 +477,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 34668b10-b0c3-463b-74c6-fcfb6f52c0ac + - c6d95d14-2e8f-49d0-66fb-3884e1cc8d64 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 276.3204ms + duration: 396.312043ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 775834e3-a0db-52eb-e476-150398481934 + - 2ad0f7ee-901b-6d6a-5d2f-5dcf049fbd41 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -514,18 +514,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:50 GMT + - Tue, 01 Aug 2023 12:02:19 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4d344920-ca48-4e68-6f81-11d62a1da7e8 + - 5b5dec15-5771-4a59-5f52-8d2763cd12fd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 396.1559ms + duration: 265.610315ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 60294efe-6ec5-4e45-d5df-38981f4bd443 + - 68d199ae-9407-f6ae-db8b-4ec42cf65795 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:51 GMT + - Tue, 01 Aug 2023 12:02:20 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1c133c81-2b52-4fcc-5a47-8fcd0e85c5f3 + - a23bc4d6-f13d-4391-6890-2c578c2b0521 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 469.2979ms + duration: 353.169791ms - id: 9 request: proto: HTTP/1.1 @@ -619,17 +619,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - df896a37-18ba-9441-a0b0-64e9705bd5fd + - a783ec53-4ea3-38da-6fe8-207296e16e44 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:48 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:14 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:51 GMT + - Tue, 01 Aug 2023 12:02:20 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7abfe256-68bb-4f06-7580-c6511e8ac9b5 + - 0976cbc8-8df6-46f4-4e06-53ac00d34aed X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 212.3755ms + duration: 228.110646ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3d14be46-cead-b1f2-dae4-466647b34c7a + - dbc49d12-839c-8cc2-8cca-cc494206d645 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:52 GMT + - Tue, 01 Aug 2023 12:02:20 GMT Expires: - "0" Pragma: @@ -737,33 +737,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2524adde-ace3-441f-662d-c1d4462a65a3 + - 37def175-ce68-4fa0-5ac7-0903697997b0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 404.3819ms + duration: 258.662382ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e8e4b8e5-07f3-6b6b-3545-306a82da5154 + - e824a615-9f67-901d-b8b2-27538762ed74 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -774,18 +774,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:52 GMT + - Tue, 01 Aug 2023 12:02:21 GMT Expires: - "0" Pragma: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 181254f4-e8d2-4c6e-71a3-0d7cc2b69d7d + - e9b7d41f-9ece-48f1-4375-4a5e6d0e14f5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 424.3133ms + duration: 257.710938ms - id: 12 request: proto: HTTP/1.1 @@ -817,17 +817,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e807bb5d-ed8a-0231-b37e-56cd86dcfebd + - da515b8f-6f27-7eaf-f800-e3bee2b950c2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -844,14 +844,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:48 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:14 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:52 GMT + - Tue, 01 Aug 2023 12:02:21 GMT Expires: - "0" Pragma: @@ -873,33 +873,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 93c2d7b0-ade0-4418-4da6-39a81683ba9e + - 49a045a5-ba35-4c8c-47b7-749006a78bc9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 197.2432ms + duration: 198.506329ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6920ea71-d9f6-3ccd-0bff-0baf12ffc0d1 + - 6ecbc8f8-d482-5147-0521-d4f02b2c80e0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -910,18 +910,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:53 GMT + - Tue, 01 Aug 2023 12:02:22 GMT Expires: - "0" Pragma: @@ -935,33 +935,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 66cefc05-86af-4b24-4b73-02a0338ea808 + - 73ade6ed-507e-464d-4011-09377cdbf23b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 438.7876ms + duration: 468.454992ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae720863-a4ed-5134-4a4a-c1214261d081 + - 2dcd9c8a-fe23-0df9-9702-4dea76f1575c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -972,18 +972,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:53 GMT + - Tue, 01 Aug 2023 12:02:22 GMT Expires: - "0" Pragma: @@ -997,12 +997,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6cb1ce26-e474-4f6d-4f81-4e388458768c + - 7f2c5b75-d1e8-4809-6283-9098edd6501a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 434.896ms + duration: 281.338887ms - id: 15 request: proto: HTTP/1.1 @@ -1015,17 +1015,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","usedForProduction":"true"}} + {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213","usedForProduction":"true"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 34ccf272-57ac-4a91-e15e-c08e2b5ebfc2 + - 64b81910-6e15-4854-9be3-60d3426460fa X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1042,14 +1042,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:54 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:22 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:54 GMT + - Tue, 01 Aug 2023 12:02:22 GMT Expires: - "0" Pragma: @@ -1071,12 +1071,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e724a06c-a49e-4e2e-4fbf-6481272db0ce + - ca2d9aa4-0250-4335-4345-d8f11ae63f81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 349.6267ms + duration: 321.393095ms - id: 16 request: proto: HTTP/1.1 @@ -1089,17 +1089,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce352ac6-e736-2dce-f0cd-e057ef0b4536 + - 6b34a1ed-516c-784c-40dd-54f33d61d5cd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1116,14 +1116,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:54 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:22 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:44:59 GMT + - Tue, 01 Aug 2023 12:02:28 GMT Expires: - "0" Pragma: @@ -1145,33 +1145,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fa6563cd-fdec-40a9-6153-e319d572b3ad + - 967189cf-957e-4b67-72c2-43d27715d4cd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 245.227ms + duration: 416.913008ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bb3c4030-44f8-9bf9-66a0-d377f4c9ac23 + - f1caa7c9-3c58-1f91-8845-e7c57b3612fc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1182,18 +1182,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:00 GMT + - Tue, 01 Aug 2023 12:02:28 GMT Expires: - "0" Pragma: @@ -1207,33 +1207,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 84e22b30-d467-42ed-5980-09ae4cf8fd33 + - 9d40839d-d551-4441-7909-3429534c05c4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.7016ms + duration: 277.387975ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a55fdc65-6537-3052-6cbb-19bcd9fcf9c4 + - a9fd734c-fbc7-665f-d462-10fb9877dab7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1244,18 +1244,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:00 GMT + - Tue, 01 Aug 2023 12:02:29 GMT Expires: - "0" Pragma: @@ -1269,12 +1269,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 75022ed2-d808-401b-4f12-18ddebfc863d + - 60eb9681-f3ef-450c-729e-4336307b0e35 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 415.8647ms + duration: 286.842222ms - id: 19 request: proto: HTTP/1.1 @@ -1287,17 +1287,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4df5b7a7-e42c-c45a-2ff1-d1976a9601b2 + - 8855cd74-5f2c-2dcb-1242-7c0a850e1de3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1314,14 +1314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:54 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:22 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:00 GMT + - Tue, 01 Aug 2023 12:02:29 GMT Expires: - "0" Pragma: @@ -1343,33 +1343,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 12461837-70f0-4b3b-740e-21635961d438 + - 3037518d-bd11-470e-42a7-fa6da5c0ff2f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 308.879ms + duration: 218.736409ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fbf95822-6d30-2ce2-d411-d8c0183af2ee + - 76a36d92-d334-3dd4-168b-8a66bd911573 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1380,18 +1380,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:01 GMT + - Tue, 01 Aug 2023 12:02:29 GMT Expires: - "0" Pragma: @@ -1405,33 +1405,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f10e39a0-8964-4483-5d8e-5de8a14075a1 + - 091ee82c-b570-41a9-7ea8-c56c94182431 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 453.5978ms + duration: 295.693548ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9141de30-3eab-2b33-f46c-f338967de2f6 + - 9c41df26-c993-6561-0bbb-c92ef957f8e6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1442,18 +1442,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:01 GMT + - Tue, 01 Aug 2023 12:02:30 GMT Expires: - "0" Pragma: @@ -1467,33 +1467,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6917e8bd-4e4e-445e-6cb3-cae12a6169f6 + - e5d85b3d-204d-4ec3-52cf-808370edc74e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.0597ms + duration: 252.312681ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 64b400c9-e939-69a6-7efa-90cc893a7557 + - d5c00e09-15b7-6a5a-497c-85f3f862eabd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1504,18 +1504,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:02 GMT + - Tue, 01 Aug 2023 12:02:30 GMT Expires: - "0" Pragma: @@ -1529,12 +1529,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 621c9657-332f-4347-40e4-fff9774df1cc + - 377f2144-c0e3-43bc-6a7f-9445979197d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.745ms + duration: 278.313848ms - id: 23 request: proto: HTTP/1.1 @@ -1547,17 +1547,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","forceDelete":"true","subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"confirm":"true","forceDelete":"true","subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6b0affa1-b2d3-b7dc-78ae-7141a6c6dc20 + - f42447f4-f734-7585-3605-d6bdba72d4eb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1574,14 +1574,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:44:54 AM","jobId":"2892745"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:22 PM","jobId":"2958387"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:02 GMT + - Tue, 01 Aug 2023 12:02:31 GMT Expires: - "0" Pragma: @@ -1603,12 +1603,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 144802d9-ac1d-4f7e-7ef1-4acd1b84a77f + - a838dfeb-d2ac-4c3d-7e38-fd0c2993ae6a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 225.087ms + duration: 288.192782ms - id: 24 request: proto: HTTP/1.1 @@ -1621,17 +1621,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cd2f1619-6dea-6d7b-467d-d77b76f2d5e4 + - 85efab04-6bbb-aefa-dbd7-631169fb8cf9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1648,14 +1648,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:45:03 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:31 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:07 GMT + - Tue, 01 Aug 2023 12:02:36 GMT Expires: - "0" Pragma: @@ -1677,12 +1677,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 84ab103a-4353-417d-59cf-629aa40e5d0c + - b7a063ae-95d5-485d-47b7-281e7fcad212 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 243.465ms + duration: 435.5784ms - id: 25 request: proto: HTTP/1.1 @@ -1695,17 +1695,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14c3d0b3-5ccb-60dc-1241-274b29bf34e1 + - d3253c09-37b0-4901-33b7-f0decc24a041 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1722,14 +1722,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:45:03 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:31 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:12 GMT + - Tue, 01 Aug 2023 12:02:41 GMT Expires: - "0" Pragma: @@ -1751,12 +1751,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5d877f99-df0c-42a0-62ef-802b5af050a4 + - 379013cd-6021-43d0-7346-d3aeadfefcdc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 245.1919ms + duration: 274.413072ms - id: 26 request: proto: HTTP/1.1 @@ -1769,17 +1769,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7350f337-d810-8f8e-7d62-ad9b34b664e0 + - 48486866-658f-b0c1-f3eb-fd931b8380ac X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1796,14 +1796,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","technicalName":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:44:29 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:45:03 AM"}' + body: '{"guid":"dacc3384-553b-48ed-a714-1ad08dad6213","technicalName":"dacc3384-553b-48ed-a714-1ad08dad6213","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 12:01:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:02:31 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:23 GMT + - Tue, 01 Aug 2023 12:02:51 GMT Expires: - "0" Pragma: @@ -1825,12 +1825,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5531cf55-3707-4df9-6023-0a8476021d78 + - b4880afb-bfd2-4e8a-7a1b-3dfc01d734e3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 225.5398ms + duration: 250.128428ms - id: 27 request: proto: HTTP/1.1 @@ -1843,17 +1843,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"5583d2c0-dfc6-4ade-a01a-6836ef7774ba"}} + {"paramValues":{"subaccount":"dacc3384-553b-48ed-a714-1ad08dad6213"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 89723240-9cd9-1825-360f-7b050e881131 + - a1a69cb3-9995-bb95-0d0a-b3b9b9cc6a0f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1877,7 +1877,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:45:33 GMT + - Tue, 01 Aug 2023 12:03:02 GMT Expires: - "0" Pragma: @@ -1899,9 +1899,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 053eaba9-6962-42e5-75a5-89d192cfb908 + - 0e938014-629b-44c5-4ffd-8b2fab058de8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 307.7264ms + duration: 254.091838ms diff --git a/internal/provider/fixtures/resource_subaccount_entitlement.amount_set.yaml b/internal/provider/fixtures/resource_subaccount_entitlement.amount_set.yaml index 635276ae..6c98d949 100644 --- a/internal/provider/fixtures/resource_subaccount_entitlement.amount_set.yaml +++ b/internal/provider/fixtures/resource_subaccount_entitlement.amount_set.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7aae3b1d-fddc-cfeb-a7ff-467a43a8fa64 + - fc9f26ac-8eac-2005-bfe1-09437f672a94 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:25 GMT + - Tue, 01 Aug 2023 12:07:26 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 53aca924-6dad-4c48-751c-5a32a3cc88ba + - cfcd2eb2-0792-4250-4060-67c3a1823e6c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 592.9522ms + duration: 250.909347ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9ea74cac-af9b-4733-b622-611161dd4392 + - 1c0e77d5-e665-dc0e-db77-bc80efc2d770 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:25 GMT + - Tue, 01 Aug 2023 12:07:27 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c7363ebf-4d69-4eb2-63d6-13fdabca7455 + - 9155a181-2105-4c97-5841-87841e116cce X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 499.7092ms + duration: 281.961426ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6018003e-c32a-bbf1-2cd4-e9fad54bb15e + - f65d555e-5875-606d-8bf1-a9e5768bdf34 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:26 GMT + - Tue, 01 Aug 2023 12:07:27 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2bda26f9-755a-4ce9-4d63-593eb1666605 + - c3dc2e4f-47ad-4c55-467f-052deee1cd67 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 475.6178ms + duration: 306.62714ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - eb111954-739c-f8b5-ca78-498b3287d33d + - 896443b8-2362-26b4-46f8-e325f274d3a2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583474"}' + body: '{"jobId":"4658286"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:47 GMT + - Tue, 01 Aug 2023 12:07:28 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ca0cd70f-445f-4211-6b85-6467fe93833e + - 2d054628-bf60-4c9c-521a-989567bebab3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 865.0947ms + duration: 1.004902889s - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6b3b70d6-af32-45b9-1c28-980f61a2dc24 + - 8878d77d-f0cc-263a-92ec-39dd5764c0de X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":3.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199511205,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":3,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891652199,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0,"parentAmount":3,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:52 GMT + - Tue, 01 Aug 2023 12:07:34 GMT Expires: - "0" Pragma: @@ -329,33 +329,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 49523f50-b7be-4179-71f7-55b7a05b5035 + - fa64cefa-1966-4b03-6ab1-f76f85d69033 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 732.9493ms + duration: 565.826627ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e5228b75-f8ac-876e-6887-6d54b25a634c + - 60fe5643-bb5f-c7bc-3b6c-24dcd3aede36 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -366,18 +366,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:53 GMT + - Tue, 01 Aug 2023 12:07:34 GMT Expires: - "0" Pragma: @@ -391,33 +391,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0a1ea9e4-50b7-40ee-43ec-cb9d4e3b9377 + - 507d02e5-c84a-48c1-4707-25ce0ce3edde X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 448.0477ms + duration: 240.915466ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f5c9daa9-1f38-477c-d7df-2b580bbe521d + - 72aeb559-3e9d-fc43-c2df-86d815c89cd5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -428,18 +428,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:54 GMT + - Tue, 01 Aug 2023 12:07:35 GMT Expires: - "0" Pragma: @@ -453,12 +453,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3fb0b2a5-97d4-4cdd-67db-1ee7cb6ba8b7 + - bb1327e0-6a7e-4b13-7e7b-1a846a9c1adf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 577.7136ms + duration: 305.482843ms - id: 7 request: proto: HTTP/1.1 @@ -477,11 +477,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ddc786dd-996c-4843-c336-33d76d3de793 + - f036ead2-2c26-9d5b-01b3-57c59f7265b6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -498,14 +498,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":3.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199511205,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":3.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891652199,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:54 GMT + - Tue, 01 Aug 2023 12:07:36 GMT Expires: - "0" Pragma: @@ -527,33 +527,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 023fbdcf-1a92-473c-775e-c93ddd38fded + - 30d27d35-452d-4172-5a46-9ff23eb38213 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 641.1967ms + duration: 579.289263ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a80959bf-5156-9da3-0b43-4169299ca99f + - 770c3b6d-5506-879f-57f2-08f1b6d84760 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -564,18 +564,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:58 GMT + - Tue, 01 Aug 2023 12:07:36 GMT Expires: - "0" Pragma: @@ -589,33 +589,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 873ae402-0255-4ebb-4b28-df3b92b8e6ea + - fd32c94c-9b4b-4ff2-6785-949a164e206d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 443.9268ms + duration: 228.06812ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - afda9087-9ff5-2aa1-f2d5-4c06300caeb5 + - 53fa1ded-af7a-edc3-9554-fe4dee5723d5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -626,18 +626,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:59 GMT + - Tue, 01 Aug 2023 12:07:37 GMT Expires: - "0" Pragma: @@ -651,12 +651,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5646b8f4-151a-4133-5adf-1ce879bfb98a + - d49e418f-b3b7-40e4-7db4-991264c19d40 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.5969ms + duration: 346.570832ms - id: 10 request: proto: HTTP/1.1 @@ -675,11 +675,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e7e216f-24dc-5e48-9ad3-e348775483bf + - e6a49f78-341d-5121-fdb0-7d3d3d063af0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -696,14 +696,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":3.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199511205,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":3,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891652199,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":0,"parentAmount":3,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:52:00 GMT + - Tue, 01 Aug 2023 12:07:37 GMT Expires: - "0" Pragma: @@ -725,33 +725,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0ff62578-6c4d-4866-5d39-0daae2b81e9a + - 37b4657c-3593-4290-5db0-50c99920f22a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 647.5122ms + duration: 811.081933ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97858704-ee2a-14d3-c234-de53d0009ae9 + - 1d2980aa-dc5d-3215-eae9-1051ecab1154 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -762,18 +762,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:52:13 GMT + - Tue, 01 Aug 2023 12:07:38 GMT Expires: - "0" Pragma: @@ -787,33 +787,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ec3a3ffc-6da3-4ce5-7b93-5d3d3a4f69cd + - eef662fe-6b42-4308-5db5-f45711d0efe6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.887ms + duration: 247.996008ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5dfdfe6f-97b8-31ee-7227-31ef7004fec1 + - 5b80c516-62cf-6972-93d2-ba9dba5890ac X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -824,18 +824,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:52:14 GMT + - Tue, 01 Aug 2023 12:07:38 GMT Expires: - "0" Pragma: @@ -849,12 +849,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e4e30694-b029-4ead-4540-c9b54bd3ad5e + - c5f83857-dbfd-414d-6326-38ffcc582ebf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.0394ms + duration: 260.436819ms - id: 13 request: proto: HTTP/1.1 @@ -873,11 +873,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e0a4a271-71d2-dc95-1b4c-95255c81d8a5 + - a7aa0fe4-d691-027e-b038-f1fc1776de1c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -894,14 +894,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583501"}' + body: '{"jobId":"4658289"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:52:33 GMT + - Tue, 01 Aug 2023 12:07:39 GMT Expires: - "0" Pragma: @@ -923,12 +923,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 67708945-dea0-4c5d-49b2-0dea154ba593 + - 727867c0-5933-4eda-6bda-c3330087f51a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 937.6852ms + duration: 689.596907ms - id: 14 request: proto: HTTP/1.1 @@ -947,11 +947,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 09f0acf3-1bd5-898d-7938-f42dc5bb98cc + - 4035f683-5f93-a9e0-212e-14e52542300e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -968,14 +968,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:52:38 GMT + - Tue, 01 Aug 2023 12:07:44 GMT Expires: - "0" Pragma: @@ -997,9 +997,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 52f7b31b-e624-464d-715b-e4f0802154f9 + - 8582c56f-fa63-4c4a-5373-3bc7711d30a0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 754.4162ms + duration: 606.926078ms diff --git a/internal/provider/fixtures/resource_subaccount_entitlement.no_amount.yaml b/internal/provider/fixtures/resource_subaccount_entitlement.no_amount.yaml index c45c5229..871e5a77 100644 --- a/internal/provider/fixtures/resource_subaccount_entitlement.no_amount.yaml +++ b/internal/provider/fixtures/resource_subaccount_entitlement.no_amount.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 10f2e7d6-97aa-8a8c-f340-c5e17addb01d + - 0a71ced3-d3a8-b755-5aab-6f97c2658df6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:49:54 GMT + - Tue, 01 Aug 2023 12:07:07 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dd146385-9f51-401c-4ecd-ef77c5dd3520 + - 429fb14d-b040-4dc3-4af9-c699e2106762 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 779.2649ms + duration: 723.448441ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 71dfa084-fcd4-c2ca-2004-ce9da2f0284a + - 9f4eff56-4a67-2e9d-d751-f526200fe001 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:49:55 GMT + - Tue, 01 Aug 2023 12:07:07 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a9e0ab7a-81c4-4d50-7420-c70a3b0256d6 + - d09cc868-90c1-4140-72cb-8a0aa0a1a502 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 507.589ms + duration: 246.428776ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2ea0055f-6acd-638a-ab38-1884bfc2ba11 + - 3f0ea269-d3f9-bf15-be15-3039899c0ba3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:49:56 GMT + - Tue, 01 Aug 2023 12:07:08 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1e484fa6-bd35-4eec-4c96-ae024ebf1deb + - 71f9fca6-ef3c-45a9-616e-3803455d61ea X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 490.7535ms + duration: 353.504739ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 22b4fdf0-9a61-d311-c57a-23ee347465b9 + - 4498b01b-a095-35e8-ba82-9f1143c7a05b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583443"}' + body: '{"jobId":"4658280"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:10 GMT + - Tue, 01 Aug 2023 12:07:09 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8a775f4d-fc28-443e-7723-d4c670b04415 + - 5cb98b98-6b10-49ce-4279-4b778c419dc8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.0382314s + duration: 856.654866ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - afa126bc-31fd-339f-75d9-5c4339719a64 + - e37afd7e-91a0-6827-6923-5de8d4413a66 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690199414252,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690891633299,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:16 GMT + - Tue, 01 Aug 2023 12:07:14 GMT Expires: - "0" Pragma: @@ -329,33 +329,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6c65d81d-c9b1-4e8b-61d5-027fd64b25e4 + - d79424cf-4bae-47e5-5ae0-738260b3f552 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 940.4917ms + duration: 701.638612ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cba3dbd6-ad45-cc7a-c327-c639d13d034c + - 094a28ae-ada1-1316-6934-baf5b1ffd79a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -366,18 +366,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:20 GMT + - Tue, 01 Aug 2023 12:07:15 GMT Expires: - "0" Pragma: @@ -391,33 +391,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c7bc6564-2e09-4f61-6088-4e40a4b73278 + - 24bfb86f-54af-4e72-4d00-ebc4a13c2466 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 457.4543ms + duration: 264.379364ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 911d8525-e9b9-c9da-0b5c-1a24f5420354 + - 5c93210c-f885-2360-c2bd-6721234307f2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -428,18 +428,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:21 GMT + - Tue, 01 Aug 2023 12:07:15 GMT Expires: - "0" Pragma: @@ -453,12 +453,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d8cc5986-6b49-44c5-4bd1-a4130bfa05e1 + - 251e86a0-3757-4476-48a3-bc8b64df206b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 445.638ms + duration: 330.664171ms - id: 7 request: proto: HTTP/1.1 @@ -477,11 +477,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bedf22b3-fc5b-33f7-3318-4195f4e4903a + - 8b8ac04c-1a0a-62cd-b079-fff41f19a1fb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -498,14 +498,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690199414252,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690891633299,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:22 GMT + - Tue, 01 Aug 2023 12:07:16 GMT Expires: - "0" Pragma: @@ -527,33 +527,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ee7f1085-81d9-4b30-7ed9-875754613338 + - 85245115-489c-414e-6783-4cd19b13f67d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 760.1019ms + duration: 744.358486ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 98c415eb-9a25-fe42-192f-9c7cd11a4996 + - 5226e597-a923-ebd0-4de3-04b4cbee56c7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -564,18 +564,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:36 GMT + - Tue, 01 Aug 2023 12:07:17 GMT Expires: - "0" Pragma: @@ -589,33 +589,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - de5cb3a7-4d32-4cc9-42f0-3fb77b3f1df9 + - 1db755fe-4945-48ea-5c8c-05bac5b4bc96 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 485.9167ms + duration: 213.64ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 865d5407-8cbc-5901-1053-e5d57429029b + - 84249e1c-8833-8d13-0191-4c90afc92fa4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -626,18 +626,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:37 GMT + - Tue, 01 Aug 2023 12:07:17 GMT Expires: - "0" Pragma: @@ -651,12 +651,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8c6d66cd-e82d-41fe-6c91-0304b8ce12ff + - 1ea86c91-170c-47b9-5ff0-8221726319a5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 410.8995ms + duration: 333.000119ms - id: 10 request: proto: HTTP/1.1 @@ -675,11 +675,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c14ecf5c-51ac-f13f-d6ea-6ba1503a5ef0 + - ad8e4bf1-a64c-c203-63bf-b4329ff191f6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -696,14 +696,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690199414252,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"hana-cloud","displayName":"SAP HANA Cloud","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"hana","displayName":"hana","uniqueIdentifier":"hana-cloud-hana","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1685973610825,"modifiedDate":1690891633299,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:38 GMT + - Tue, 01 Aug 2023 12:07:18 GMT Expires: - "0" Pragma: @@ -725,33 +725,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d34a39e1-11dc-40c9-4a95-58f9ae03bd51 + - 82be67ff-9390-4fe6-60f9-da12f019ccad X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 732.0934ms + duration: 886.170794ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b0c8535-5b40-2d95-ba94-fcb6a393b934 + - d9408233-fc3c-7ff9-06ac-eb25f53613bf X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -762,18 +762,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:43 GMT + - Tue, 01 Aug 2023 12:07:19 GMT Expires: - "0" Pragma: @@ -787,33 +787,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 665c1ec2-5c86-4ea4-5b08-58600bba270d + - da783653-3a67-4053-754b-8fa3c8d7a341 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 478.4476ms + duration: 349.223973ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b6064351-6ef2-1c55-8597-174327e988cb + - 91cfd7f2-7cb4-73c2-48f3-4ffb6a73c9e5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -824,18 +824,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:44 GMT + - Tue, 01 Aug 2023 12:07:19 GMT Expires: - "0" Pragma: @@ -849,12 +849,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30999074-411c-4e63-61d2-9cb1b3abe970 + - ded02f22-0716-4c5c-6d65-f0581006157a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 416.7534ms + duration: 309.269436ms - id: 13 request: proto: HTTP/1.1 @@ -873,11 +873,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6af6182c-cd97-33a0-1888-7f699d3c3d8a + - f115a11e-3262-0635-0619-04a8914fb1ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -894,14 +894,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583459"}' + body: '{"jobId":"4658283"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:50:54 GMT + - Tue, 01 Aug 2023 12:07:20 GMT Expires: - "0" Pragma: @@ -923,12 +923,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 246bc969-0c81-4c0c-7506-0e5a72ca609e + - 8c25bb4d-1cc1-4aae-7f56-5938162d6e73 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 849.7389ms + duration: 645.915836ms - id: 14 request: proto: HTTP/1.1 @@ -947,11 +947,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f5c5d913-d018-5082-7c98-5175dcbd7c0a + - 1d3342ab-0de7-7823-a51d-1289c1214d94 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -968,14 +968,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690875242245,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:51:00 GMT + - Tue, 01 Aug 2023 12:07:25 GMT Expires: - "0" Pragma: @@ -997,9 +997,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f554e152-417a-4b38-517b-6f1de571376b + - f64f7bb3-d154-4f30-75f9-bb1d8ed1984f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 670.0577ms + duration: 643.478986ms diff --git a/internal/provider/fixtures/resource_subaccount_entitlement.update.yaml b/internal/provider/fixtures/resource_subaccount_entitlement.update.yaml index 052089cb..e3279724 100644 --- a/internal/provider/fixtures/resource_subaccount_entitlement.update.yaml +++ b/internal/provider/fixtures/resource_subaccount_entitlement.update.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e88e391b-747d-a496-b57a-22a8c9010b23 + - af9097b1-9da9-62d6-d58d-a7f3f74adab6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:14 GMT + - Tue, 01 Aug 2023 12:07:45 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 62dddb0a-4f46-4fc1-64b5-6e1f65165dde + - dc9f247f-1c88-441a-660f-5ed30ee7935a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 560.2438ms + duration: 349.231115ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7d7b6425-f1c7-f949-7f75-f464b87befeb + - 868fe794-f12a-e128-9e43-444319e33156 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:15 GMT + - Tue, 01 Aug 2023 12:07:46 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43ee0f74-a14e-4359-6ac6-5c868a288e3c + - e7d3a347-08a9-4e50-5331-5f32e08aa5cd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 569.1257ms + duration: 356.413001ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 197ff5ec-6844-079a-5b14-4619c9303bdc + - 030df562-12c9-368d-59bc-ba82a7b42594 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:16 GMT + - Tue, 01 Aug 2023 12:07:46 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7cffdc03-58b3-4346-6de1-31863ec90972 + - 4344fd80-79ec-472d-4ee1-5132a76f1088 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 421.5831ms + duration: 247.500846ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b50a284c-c53d-f2bb-1a69-5c1ee7e80b8b + - 4c2d510d-4fa1-64f0-6981-66c7f0b94055 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583505"}' + body: '{"jobId":"4658295"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:16 GMT + - Tue, 01 Aug 2023 12:07:47 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e15aa4fe-d5b5-42ed-7633-4f6017c95af9 + - feb77295-682d-4011-74aa-d8c4159009e9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 758.5782ms + duration: 682.902373ms - id: 4 request: proto: HTTP/1.1 @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 27eb7113-65d8-2660-86c2-435ed983e629 + - c86fc4f4-285a-027f-8775-bc751c755c4c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199600250,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}}],"assignedServices":[{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891671267,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:22 GMT + - Tue, 01 Aug 2023 12:07:53 GMT Expires: - "0" Pragma: @@ -329,33 +329,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2ae200ed-64a7-4dd6-7977-bd731fc5f758 + - ab5e279c-0206-484a-6708-87678462d80a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 678.6826ms + duration: 946.00649ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 18c4a31b-4717-8990-b56d-ae3ae0dcea62 + - 16f2ab9f-5806-cacb-24af-f436495a8ed2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -366,18 +366,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:23 GMT + - Tue, 01 Aug 2023 12:07:54 GMT Expires: - "0" Pragma: @@ -391,33 +391,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7c02e168-0408-4137-5867-65c4411ae454 + - 1c829418-b5d1-489f-7292-be5a5b94ebfe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 442.2066ms + duration: 317.916448ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5116d08e-8830-3716-fed1-c0c62ef2e497 + - f8519060-6c8a-4950-dd5b-26bae6641c15 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -428,18 +428,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:23 GMT + - Tue, 01 Aug 2023 12:07:54 GMT Expires: - "0" Pragma: @@ -453,12 +453,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 422bddc6-a804-4ee6-5a7e-8c97c53ee943 + - fa74b99f-d2e9-4f2f-641f-567c317bb32d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 428.7479ms + duration: 254.459792ms - id: 7 request: proto: HTTP/1.1 @@ -477,11 +477,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 27f8902f-91e8-1ab6-791e-b324346e9473 + - 65f11d9c-27f4-9011-9ada-5fede8e9c11d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -498,14 +498,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199600250,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891671267,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:24 GMT + - Tue, 01 Aug 2023 12:07:55 GMT Expires: - "0" Pragma: @@ -527,33 +527,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c017811d-7250-436d-79b9-915ad52ca778 + - a00418f9-45e0-4182-6f2c-144cea436b59 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 670.0601ms + duration: 517.049187ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 07a47427-6cb8-7604-8e1f-512e98b7e5fc + - 8381a3dd-e95f-f464-768e-6e7dad20cec8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -564,18 +564,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:24 GMT + - Tue, 01 Aug 2023 12:07:55 GMT Expires: - "0" Pragma: @@ -589,33 +589,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 16035039-d7fa-4db3-6ab6-53d41f65620f + - 1c1bae9a-5850-4f71-5981-1f057d065e6a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 430.2913ms + duration: 215.434434ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c3d92e7f-81d7-7354-659e-23169f1fd282 + - ef12bab5-a3da-9e72-095e-95e98a14c113 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -626,18 +626,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:25 GMT + - Tue, 01 Aug 2023 12:07:55 GMT Expires: - "0" Pragma: @@ -651,12 +651,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ec07796b-178e-43eb-7a73-15ee03df18be + - f3b88363-0742-4827-7f82-844b7004e12f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 395.6929ms + duration: 223.809022ms - id: 10 request: proto: HTTP/1.1 @@ -675,11 +675,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3bb9cce2-3600-7c27-e649-9e0fff7ac1cc + - 95221df5-7ee6-685d-019a-66ccc7bbb691 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -696,14 +696,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199600250,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891671267,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":2.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:25 GMT + - Tue, 01 Aug 2023 12:07:56 GMT Expires: - "0" Pragma: @@ -725,33 +725,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 073b8e29-9bd1-461c-4b0d-9dbe7a4d2594 + - 1c609c32-c36b-4acb-4174-93451a5eb877 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 698.8075ms + duration: 487.343486ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 58b2cf0f-7d53-0cda-aa44-48b7a9965e4c + - eea5636b-bd9e-5343-3654-fbb71b2facfe X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -762,18 +762,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:26 GMT + - Tue, 01 Aug 2023 12:07:56 GMT Expires: - "0" Pragma: @@ -787,33 +787,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bcfb2512-e095-4f1f-57c6-fe51909a6540 + - 3d53cae4-3d9e-4dad-702c-4ada5496ac5a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 436.9518ms + duration: 347.468566ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2cec783c-6f0b-b336-e63e-46c232ef4d6b + - 463ff913-379f-8574-5bab-e4fd9ee2fc17 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -824,18 +824,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:26 GMT + - Tue, 01 Aug 2023 12:07:57 GMT Expires: - "0" Pragma: @@ -849,12 +849,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f1543bf3-24aa-4cb4-6d09-307f83273fb5 + - 22a5a18a-a349-4e53-7e0a-e15828974b56 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.4952ms + duration: 207.540623ms - id: 13 request: proto: HTTP/1.1 @@ -873,11 +873,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8d683131-94b9-a2d0-1cdb-e6a2dd49fef2 + - 6c3fca10-ab8c-8d88-892d-756c7763d2d3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -894,14 +894,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583508"}' + body: '{"jobId":"4658300"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:27 GMT + - Tue, 01 Aug 2023 12:07:57 GMT Expires: - "0" Pragma: @@ -923,12 +923,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d4af0d34-f034-4c8c-6c21-1d1cd22cb584 + - d569c5a0-2109-45f3-6d44-3326985d2a61 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 639.2437ms + duration: 635.310929ms - id: 14 request: proto: HTTP/1.1 @@ -947,11 +947,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c55caaa5-0f7a-ad3b-796b-1b002e9dadf6 + - 9d96300b-2d30-96d5-bf2d-98d690b6d3b4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -968,14 +968,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":2.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199611382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":2.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891680380,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:33 GMT + - Tue, 01 Aug 2023 12:08:03 GMT Expires: - "0" Pragma: @@ -997,33 +997,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1cba675c-0d82-4e1b-4f3d-aec6202fe2f9 + - 30d6a4ed-14a1-445c-6ce2-945b9cec947d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 562.0721ms + duration: 582.664284ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 47bf5877-f205-acbe-d827-a1aa54ffdb7f + - 95ad4b32-4d6a-3ca5-e77d-eea28befda12 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1034,18 +1034,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:33 GMT + - Tue, 01 Aug 2023 12:08:03 GMT Expires: - "0" Pragma: @@ -1059,33 +1059,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - acf90b6d-96b3-4037-5868-28b3f4a61936 + - 6a749cd8-69ae-4594-5175-349b8f83b069 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 489.9025ms + duration: 319.538925ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1b661169-1e15-25b1-6e6c-707d6da152d0 + - 740fc10d-b4c4-bf1a-a141-e88f215d433a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1096,18 +1096,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:34 GMT + - Tue, 01 Aug 2023 12:08:04 GMT Expires: - "0" Pragma: @@ -1121,12 +1121,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 846a577a-2817-41ae-43cb-a2737ec314ff + - 6004cfed-9de8-4336-4386-d40b99c24ae8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 422.6116ms + duration: 240.818464ms - id: 17 request: proto: HTTP/1.1 @@ -1145,11 +1145,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5f4cc306-121c-d17b-f494-3ddb41ce5021 + - a66434d2-b748-5979-ffd8-0f90af547d0c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1166,14 +1166,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":2.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690199611382,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":3.0,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":1,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"data-privacy-integration-service-standard","category":"SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":2,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1689776545393,"modifiedDate":1690891680380,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1,"parentAmount":3,"autoAssigned":false,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:34 GMT + - Tue, 01 Aug 2023 12:08:04 GMT Expires: - "0" Pragma: @@ -1195,33 +1195,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0c26544-94cb-4bdd-4247-0fcd383c01fc + - f24d362b-1678-4026-4e47-6f73cd656e1b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 621.1915ms + duration: 613.164537ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d831cb3f-660f-77cb-d159-637de37632c9 + - 8f06525c-8cc9-8027-13cf-f55724e20058 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1232,18 +1232,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:35 GMT + - Tue, 01 Aug 2023 12:08:05 GMT Expires: - "0" Pragma: @@ -1257,33 +1257,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9c68abf2-6faa-4a13-5b82-be46e6e14f2f + - f6d21ec4-3851-4eaf-68cc-9537661c4bb5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.5671ms + duration: 218.97695ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 67be493a-736d-8f7c-96ba-9ba2866761a0 + - fe527b49-d5d2-9a75-fd03-d172e908ca2a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1294,18 +1294,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:35 GMT + - Tue, 01 Aug 2023 12:08:05 GMT Expires: - "0" Pragma: @@ -1319,33 +1319,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c84ec8ac-e828-44b5-7f46-73f55e61c6ab + - 02a21736-7879-40b5-6fbc-a45c1707e533 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 354.688ms + duration: 278.424714ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 84a1b3d9-912e-fd13-ddb5-0a0580c8471e + - c994f5dc-94ea-e876-951c-c29787518cd2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1356,18 +1356,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:36 GMT + - Tue, 01 Aug 2023 12:08:06 GMT Expires: - "0" Pragma: @@ -1381,12 +1381,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 220839c8-72d0-47de-5023-be211ddb435c + - 11a46e7e-240e-4407-7b89-4b355c23ea14 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 453.7262ms + duration: 459.114432ms - id: 21 request: proto: HTTP/1.1 @@ -1405,11 +1405,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 32948ac6-84fd-2030-6e1b-adfe4256e9a5 + - d0f6eb6c-c70e-beb0-06c3-9869a5e370e9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1426,14 +1426,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"4583511"}' + body: '{"jobId":"4658303"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:37 GMT + - Tue, 01 Aug 2023 12:08:07 GMT Expires: - "0" Pragma: @@ -1455,12 +1455,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e7cf5b31-3143-49d8-78fe-531b8ba3a46e + - c91d2114-c20c-4b3a-595f-e367444c2655 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 726.511ms + duration: 707.94258ms - id: 22 request: proto: HTTP/1.1 @@ -1479,11 +1479,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ce56aa19-6b73-5443-9569-31b073cb2273 + - f39d28f0-de17-5688-b4e7-40531804d110 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1500,14 +1500,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"entitledServices":[{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"print","displayName":"Print Service","description":"Manage print queues, connect print clients and monitor print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"PortalApplication","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icG9ydGFsIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wb3J0YWw8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1Ljg0LDIzLjk2MmE4LjQ4OSw4LjQ4OSwwLDAsMC0xMi43ODMtNS43MTNBMTAuNzQ3LDEwLjc0NywwLDAsMCwyMi40MSwxMUMxMCwxMSwxMS4wOSwyMy45ODgsMTEuMDksMjMuOTg4QTEwLjI1NywxMC4yNTcsMCwwLDAsMTQuMjg1LDQ0SDIyVjI5aDlWNDRINDEuNWExMC40ODYsMTAuNDg2LDAsMCwwLDQuMzQtMjAuMDM4Wk00MS41LDQxSDM0VjI2SDE5VjQxSDE0LjI4NWE3LjI1Nyw3LjI1NywwLDAsMS0yLjI1OC0xNC4xNjJsMi4yNzktLjc2OC0uMjMyLTIuMzg5YzAtLjA0Mi0uMzc5LTQuMjM3LDIuMDEtNy4wMTNDMTcuNDYxLDE1LjA2OCwxOSwxNCwyMi40NjUsMTRjMi41MzUsMCw2LjQxNywyLjE4Niw3Ljk5NCw1LjMzOWwxLjE3NiwyLjg3MSwyLjQyNC0xLjMxOEE3LjYsNy42LDAsMCwxLDM3LjQ0OSwyMGE1LjU0Niw1LjU0NiwwLDAsMSw1LjQ0Myw0LjUxOGwuMjg4LDEuNTI4LDEuNDE1LjY0NkE3LjQ4Niw3LjQ4NiwwLDAsMSw0MS41LDQxWiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDYgNDQgMjIuMDA2IDQ0IDIyLjAwNiAyOSAzMS4wMDYgMjkgMzEuMDA2IDQ0IDM0LjAwNiA0NCAzNC4wMDYgMjYgMTkuMDA2IDI2IDE5LjAwNiA0NCIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}]}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags","description":"View and manage Feature Flags Service instances. Get information about flags status, usage and history. Also perform tasks, such as enabling, disabling, adding and removing flags.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"Dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cias","displayName":"Cloud Integration Automation Service","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sap-graph","displayName":"SAP Graph Dev","description":"SAP Graph is the unified API for accessing SAP-managed data, the API of the Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Audit Log Viewer free edition","description":"Audit Log Viewer free edition","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","description":"SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXVkaXRsb2ctbWFuYWdlbWVudCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNWE3YTk0O30uY2xzLTJ7ZmlsbDojMDA5MmQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXVkaXRsb2ctbWFuYWdlbWVudDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDAuNjA4LDEwLjg0M0EyLjk3LDIuOTcsMCwwLDAsMzguNSwxMEgzMi4yMThhNS4yNzYsNS4yNzYsMCwwLDAtMS4zNTktMS45MjEsNC4xLDQuMSwwLDAsMC0yLjItLjk4NSw1Ljg1Miw1Ljg1MiwwLDAsMC0yLjEwOS0yLjI0OUE1LjY2MSw1LjY2MSwwLDAsMCwyMy41LDRhNS45LDUuOSwwLDAsMC0zLjA5My44NDQsNS43MjEsNS43MjEsMCwwLDAtMi4xNTYsMi4yNDksNC4yNzEsNC4yNzEsMCwwLDAtMi4xNTYuOTg1QTQuMjIyLDQuMjIyLDAsMCwwLDE0Ljc4MywxMEg4LjVhMi44ODgsMi44ODgsMCwwLDAtMywzVjQ5YTIuODg4LDIuODg4LDAsMCwwLDMsM2gyN1Y0OUg4LjVWMTNoNi4yODFhNi41MTYsNi41MTYsMCwwLDAsLjkzNywxLjg3NUEzLjAxOCwzLjAxOCwwLDAsMCwxOC4xNTcsMTZIMjguODQ0YTIuOTMsMi45MywwLDAsMCwyLjM0My0xLjEyNUE0LjY0OCw0LjY0OCwwLDAsMCwzMi4yMTgsMTNIMzguNVYyNWgzVjEzQTIuODQ2LDIuODQ2LDAsMCwwLDQwLjYwOCwxMC44NDNaTTI4LDEzSDE5YTEuMzI1LDEuMzI1LDAsMCwxLTEuNS0xLjVBMS4zMjUsMS4zMjUsMCwwLDEsMTksMTBoMS41YTIuODg2LDIuODg2LDAsMCwxLDMtMywyLjk3LDIuOTcsMCwwLDEsMi4xMS44NDNBMi44NTEsMi44NTEsMCwwLDEsMjYuNSwxMEgyOGExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41QTEuMzI2LDEuMzI2LDAsMCwxLDI4LDEzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LjkyOCwzMy44NzdjLS4xMDYtLjIzLS4yMzEtLjQ2OS0uMzcyLS43MTdsMS4yNzUtMS4yNzRMMzcuNjEsMzAuNjY1bC0xLjI3NSwxLjI3NEE2LjQ2Myw2LjQ2MywwLDAsMCwzNC44LDMxLjNWMjkuNUgzMy4xdjEuOGE3Ljc0Nyw3Ljc0NywwLDAsMC0xLjQzNC42MzdsLTEuMzI3LTEuMjc0LTEuMTY4LDEuMjIxLDEuMjc0LDEuMjc0YTMuMzc1LDMuMzc1LDAsMCwwLS42MzcsMS40ODdIMjh2MS43aDEuOGEzLjUyLDMuNTIsMCwwLDAsLjYzNywxLjQ4NkwyOS4xNjgsMzkuMTZsMS4xNjgsMS4xNjgsMS4zMjctMS4yNzRhMy41MDksMy41MDksMCwwLDAsMS40MzQuNjM2VjQxLjVoMS43VjM5LjY5YTQuNDU0LDQuNDU0LDAsMCwwLDEuNTM5LS42MzZsMS4yNzUsMS4yNzQsMS4yMjEtMS4xNjgtMS4yNzUtMS4zMjhhNS44NjksNS44NjksMCwwLDAsLjYzOC0xLjQ4Nkg0MHYtMS43aC0xLjhBNC41MDgsNC41MDgsMCwwLDAsMzcuOTI4LDMzLjg3N1pNMzUuOCwzNy4zMjhhMi41LDIuNSwwLDAsMS0zLjYxLDAsMi41NDMsMi41NDMsMCwwLDEtLjc0My0xLjgzMiwyLjM2OSwyLjM2OSwwLDAsMSwuNzQzLTEuNzc4LDIuNjMsMi42MywwLDAsMSwzLjYxLDAsMi4zNzQsMi4zNzQsMCwwLDEsLjc0NCwxLjc3OEEyLjU0OCwyLjU0OCwwLDAsMSwzNS44LDM3LjMyOFoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTUuMDg2IDIyLjU4MiAxMy4yNTQgMjAuNzUgMTEuNTAyIDIyLjU4MiAxNS4wODYgMjYuMTY1IDE2LjkxNyAyNC4zMzQgMjAuNTAxIDIwLjc1IDE4LjY2OSAxOC45OTggMTUuMDg2IDIyLjU4MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxNS4wODYgMzQuNTg2IDEzLjI1NCAzMi43NTQgMTEuNTAyIDM0LjU4NiAxNS4wODYgMzguMTcgMTYuOTE3IDM2LjMzOCAyMC41MDEgMzIuNzU0IDE4LjY2OSAzMS4wMDIgMTUuMDg2IDM0LjU4NiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LjkzNyw0OS4zODRsLTcuNjYtNy42NmExMC4xMTIsMTAuMTEyLDAsMCwwLDEuNTg4LTIuODk1LDEwLjMwOCwxMC4zMDgsMCwwLDAtLjI4LTcuNDI3LDEwLjU0OSwxMC41NDksMCwwLDAtNS41NTgtNS41NTgsMTAuMjQsMTAuMjQsMCwwLDAtOC4xMjgsMEExMC41NDksMTAuNTQ5LDAsMCwwLDI0LjM0MSwzMS40YTEwLjIzNywxMC4yMzcsMCwwLDAsMCw4LjEyN0ExMC41NDksMTAuNTQ5LDAsMCwwLDI5LjksNDUuMDg3YTkuOTg3LDkuOTg3LDAsMCwwLDQuMDY0Ljg0MSwxMC4zMjEsMTAuMzIxLDAsMCwwLDYuMjU5LTIuMDU1bDcuNjYsNy42NmExLjM2NCwxLjM2NCwwLDAsMCwyLjA1NSwwQTEuMzEsMS4zMSwwLDAsMCw0OS45MzcsNDkuMzg0Wm0tMTAuNy04LjY0MWE3LjQ0MSw3LjQ0MSwwLDAsMS0xMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLTEwLjU1Niw3LjQ0Myw3LjQ0MywwLDAsMSwxMC41NTYsMCw3LjQ0Myw3LjQ0MywwLDAsMSwwLDEwLjU1NloiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwyMy41aDlhMS41LDEuNSwwLDEsMCwwLTNIMjVhMS41LDEuNSwwLDEsMCwwLDNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3,"remainingAmount":3,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY29udGludW91cy1pbnRlZ3JhdGlvbi1hbmQtZGVsaXZlcnlfLV9SRU1BS0VfSU5fUVVBUlRaX0NPTE9SU19pY29uX29yaWdpbl91bmNlcnRhaW5fIiBkYXRhLW5hbWU9ImNvbnRpbnVvdXMtaW50ZWdyYXRpb24tYW5kLWRlbGl2ZXJ5IC0gUkVNQUtFIElOIFFVQVJUWiBDT0xPUlMgKGljb24gb3JpZ2luIHVuY2VydGFpbikiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEuNSwyOGEyMi41MDcsMjIuNTA3LDAsMCwxLTcuNzMsMTYuOTU5LDMuNSwzLjUsMCwwLDAtLjQyLTEuMDQ5LDQuMTQ1LDQuMTQ1LDAsMCwwLTEuNDA4LTEuNDY4QTE5LjUxNCwxOS41MTQsMCwwLDAsNDguMzg0LDI4LDE5LjIzNiwxOS4yMzYsMCwwLDAsNDUuNiwxNy45OTJsMi42NjctMS42MThBMjIuMzgzLDIyLjM4MywwLDAsMSw1MS41LDI4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI5LjM4OCw1MC41MzJoLS40MkEyMi41NDEsMjIuNTQxLDAsMCwxLDYuODU2LDMyLjMxNWEzLjY0MiwzLjY0MiwwLDAsMCwxLjEzOC4xNzksNC4wMjEsNC4wMjEsMCwwLDAsMS45NzgtLjQ3OSwxOS40NjcsMTkuNDY3LDAsMCwwLDE5LDE1LjRoLjM2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM2LjI3OSw2LjdhNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsMTkuNDE3LDE5LjQxNywwLDAsMC0yMy4wMTIsOS4wNDlsLTIuNzI2LTEuNUEyMi40OTIsMjIuNDkyLDAsMCwxLDM2LjI3OSw2LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNy45OTQsMjMuNTA2QTQuNDg4LDQuNDg4LDAsMCwwLDMuNSwyOGE0LjQxLDQuNDEsMCwwLDAsMy4zNTYsNC4zMTUsMy42NDIsMy42NDIsMCwwLDAsMS4xMzguMTc5LDQuMDIxLDQuMDIxLDAsMCwwLDEuOTc4LS40NzlBNC40NCw0LjQ0LDAsMCwwLDEyLjQ4OSwyOCw0LjQ4OCw0LjQ4OCwwLDAsMCw3Ljk5NCwyMy41MDZabTEuNjE4LDYuMDIyYTIuMTc5LDIuMTc5LDAsMCwxLTMuMDg2LjE1QTIuMTg1LDIuMTg1LDAsMCwxLDUuNzQ3LDI4YTIuMjQ4LDIuMjQ4LDAsMCwxLDQuNSwwQTIuMTQ4LDIuMTQ4LDAsMCwxLDkuNjEyLDI5LjUyOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00My43Nyw0NC45NTlhMy41LDMuNSwwLDAsMC0uNDItMS4wNDksNC4xNDUsNC4xNDUsMCwwLDAtMS40MDgtMS40NjgsNC4zLDQuMywwLDAsMC0yLjQ4Ny0uNzc5LDQuNjc5LDQuNjc5LDAsMCwwLTIuMjQ3LjYsNC41LDQuNSwwLDAsMCwyLjI0Nyw4LjM5LDQuMzU4LDQuMzU4LDAsMCwwLDIuMjQ3LS42QTQuNDY5LDQuNDY5LDAsMCwwLDQzLjc3LDQ0Ljk1OVptLTIuMTI4LDEuNjQ4YTIuMjQzLDIuMjQzLDAsMCwxLTQuMTM0LjY4OSwyLjI2MSwyLjI2MSwwLDAsMSwuODM4LTMuMDg2LDIuMzYxLDIuMzYxLDAsMCwxLDEuMTA5LS4zLDEuNTE0LDEuNTE0LDAsMCwxLC41MDkuMDlBMi4xNDUsMi4xNDUsMCwwLDEsNDEuNCw0NS4wNDksMi4wNzUsMi4wNzUsMCwwLDEsNDEuNjQyLDQ2LjYwN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00MS43LDUuOTQ4YTQuNDUsNC40NSwwLDAsMC01LjQyMy43NDksNC4xMTQsNC4xMTQsMCwwLDAtLjcxOS45LDQuMjg0LDQuMjg0LDAsMCwwLS41NjksMS45NDgsNC40OTEsNC40OTEsMCwwLDAsMi4yMTcsNC4yLDQuNjc5LDQuNjc5LDAsMCwwLDIuMjQ3LjZBNC40OTUsNC40OTUsMCwwLDAsNDEuNyw1Ljk0OFptLS4zLDVhMi4yNTYsMi4yNTYsMCwwLDEtMS45NDgsMS4xMzksMi4zNjEsMi4zNjEsMCwwLDEtMS4xMDktLjMsMi4yMjYsMi4yMjYsMCwwLDEtMS4wMTgtMS4zMTgsMi4wNTksMi4wNTksMCwwLDEsLjE4LTEuNzY4LDIuMDg2LDIuMDg2LDAsMCwxLDEuMjU4LS45ODksMS43NTUsMS43NTUsMCwwLDEsLjY4OS0uMTJBMi4yMzEsMi4yMzEsMCwwLDEsNDEuNCwxMC45NTFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","description":"Configure and run predefined pipelines for continuous integration and delivery.","metadata":{"displayName":"Continuous Integration & Delivery"},"plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"print-app","displayName":"Print Service","description":"Allows you to manage print queue and monitor the print status","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","description":"Automate resolutions for SAP S/4HANA and SAP S/4HANA Cloud business situations","metadata":{"displayName":"Intelligent Situation Automation"},"plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service enables central storage of HTML5 applications in SAP BTP. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sapappstudio","description":"Develop, debug, test, and deploy SAP business applications.","metadata":{"displayName":"SAP Business Application Studio"},"plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","description":"Check validity and get details of given IBAN number.","metadata":{"displayName":"IBAN Service"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","metadata":{"displayName":"Forms Service by Adobe API"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZm9ybXMtc2VydmljZS1ieS1hZG9iZV9TQVBfLV8zUkRfUEFSVFlfIiBkYXRhLW5hbWU9ImZvcm1zLXNlcnZpY2UtYnktYWRvYmUgKFNBUCkgLSAoM1JEIFBBUlRZKSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpyZWQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUxLjI1NCwzNC44NzdjLTEuMzc4LTEuNDgtNC4yNjgtMi4yNjEtOC4zNTUtMi4yNjFhNDguMjYsNDguMjYsMCwwLDAtNy43MzguNzEsMzcuMSwzNy4xLDAsMCwxLTQuNzctNS41LDQ3LjE2MSw0Ny4xNjEsMCwwLDEtMi45NTYtNC42NDVjMS40NDktNC40NzUsMi40NTgtOC43NzQsMi40NTgtMTIuMDQxLDAtMi40NDktLjc4Ni02LjQ4MS00LjQyOS02LjQ4MUEyLjk4LDIuOTgsMCwwLDAsMjMsNi4xMzVjLTEuNTM2LDIuNjM4LS44NDEsOC42MzcsMS45NjMsMTQuNzE4LS45NywyLjkyMS0yLjA2OSw1Ljg4OS0zLjQ1MSw5LjJhODAuODEzLDgwLjgxMywwLDAsMS0zLjk4MSw4LjE5NEM5LjYxNSw0MS4zOSw0LjU3LDQ0LjkyNCw0LjA1MSw0Ny43N2EyLjcyMywyLjcyMywwLDAsMCwuODgsMi41NzYsNC4yLDQuMiwwLDAsMCwyLjg1NC45ODljNC41NDYsMCw5LjYwNy02LjY1MSwxMy40MDctMTMuNDY2LDIuMTEzLS43Myw0LjMxOS0xLjQwNiw2LjYtMi4wMSwyLjQ2Ni0uNjU2LDQuODQ5LTEuMTc4LDcuMDY3LTEuNTcxLDUuNSw0Ljk3MSwxMC4zNjEsNS43MTcsMTIuNzc5LDUuNzE3LDMuMDE5LDAsMy44NzktMS4yNDksNC4xODEtMi4wNDZBMy4xNDEsMy4xNDEsMCwwLDAsNTEuMjU0LDM0Ljg3N1pNMjMuNzcyLDYuNjFhMS45MjEsMS45MjEsMCwwLDEsMS42NDUtMS4wMjVjMS4zNTQsMCwyLjEsMS4yLDIuMSwzLjM3N2EzOS41MjMsMzkuNTIzLDAsMCwxLTIuMTU1LDEwLjZDMjIuNzI4LDEzLjQsMjIuNjkyLDguNDc5LDIzLjc4LDYuNjFaTTQuOTI3LDQ3LjkzOWMuNDQ0LTIuMzU2LDQuOTQ3LTUuNTQ0LDExLjg0OS04LjQxLTMuODQ4LDYuNTczLTcuNjMyLDEwLjYtMTAsMTAuNmExLjc2NSwxLjc2NSwwLDAsMS0xLjI0LS40NTYsMS44MTIsMS44MTIsMCwwLDEtLjU4OS0xLjczNVptMjkuMS0xNC40MTZjLTIuMDYyLjM5Mi00LjIzMy44NjMtNi40NzEsMS40NTYtMS45NjMuNTE4LTMuODc4LDEuMS01LjcyNCwxLjcxMiwxLjA3Mi0yLjAxNCwyLjAwNy00LDIuNzQ5LTUuNzY3Ljg4My0yLjEzMiwxLjczMS00LjM1OCwyLjQ3Ny02LjU2OWE0Ny42MjgsNDcuNjI4LDAsMCwwLDIuNiw0LjAyNUEzOC42MTYsMzguNjE2LDAsMCwwLDM0LjA0MiwzMy41aDBabTIuMDA2LjU4NWEzMS41MjgsMzEuNTI4LDAsMCwxLDEwLjQ0My0uMzI2YzEuNzQ3LjM2MSwyLjc0OCwxLjQ0NSwyLjQzLDMuMDM1cy0yLjI0MiwyLjM5MS00LjM4MSwxLjg4QTIwLjM2MiwyMC4zNjIsMCwwLDEsMzYuMDM3LDM0LjEwOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","description":"Generate print and interactive forms using Adobe Document Services.","metadata":{"displayName":"Forms Service by Adobe"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Feature Flags service - standard plan","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","metadata":{"displayName":"Date and Time"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null}],"assignedServices":[{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icHJpbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnByaW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4xMDksMTMuODkxQTIuODc5LDIuODc5LDAsMCwwLDQ5LDEzSDQzVjdhMi44OTEsMi44OTEsMCwwLDAtLjg5MS0yLjEwOUEyLjg3OSwyLjg3OSwwLDAsMCw0MCw0SDE2YTIuODMzLDIuODMzLDAsMCwwLTIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMCwxMyw3djZIN2EyLjgzMywyLjgzMywwLDAsMC0yLjE1Ni44OTFBMi45NjIsMi45NjIsMCwwLDAsNCwxNlYzMWEyLjg4OSwyLjg4OSwwLDAsMCwzLDNoNlYzMUg3VjE2SDQ5VjMxSDQzdjNoNmEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ0LDIuODQ0LDAsMCwwLDUyLDMxVjE2QTIuODkxLDIuODkxLDAsMCwwLDUxLjEwOSwxMy44OTFaTTQwLDEzSDE2VjdINDBaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYsMjAuNWExLjUxMSwxLjUxMSwwLDAsMC0uNDIyLTEuMDMxQTEuMzgxLDEuMzgxLDAsMCwwLDQ0LjUsMTloLTZhMS4zNzgsMS4zNzgsMCwwLDAtMS4wNzguNDY5QTEuNTExLDEuNTExLDAsMCwwLDM3LDIwLjUsMS4zMjUsMS4zMjUsMCwwLDAsMzguNSwyMmg2QTEuMzI3LDEuMzI3LDAsMCwwLDQ2LDIwLjVaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxOSIgeT0iMzciIHdpZHRoPSIxOCIgaGVpZ2h0PSIzIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjM3IDQzIDE5IDQzIDI4IDQ3LjEwMiAzNyA0MyIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjEwOSwyNS44OTFBMi44NzksMi44NzksMCwwLDAsNDAsMjVIMTZhMi44MzMsMi44MzMsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDEzLDI4VjQ5YTIuODg5LDIuODg5LDAsMCwwLDMsM0g0MGEyLjk2MiwyLjk2MiwwLDAsMCwyLjEwOS0uODQ0QTIuODQ4LDIuODQ4LDAsMCwwLDQzLDQ5VjI4QTIuODkxLDIuODkxLDAsMCwwLDQyLjEwOSwyNS44OTFaTTQwLDQ5SDE2VjI4SDQwWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients and monitor print status","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"sender","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"receiver","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0icGxhY2Vob2xkZXIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnBsYWNlaG9sZGVyPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ni45NTMsMjAuNTg4YTQuMzYzLDQuMzYzLDAsMCwwLTEuODM3LS40NTksMy4yOTEsMy4yOTEsMCwwLDAtMy40LDMuMzc2LDQuMDg0LDQuMDg0LDAsMCwwLC45LDIuNjI1LDMuMDExLDMuMDExLDAsMCwwLDIuNSwxLjEyNiwzLjA4NSwzLjA4NSwwLDAsMCwxLjQ2Mi0uMzc1LDcuNTEyLDcuNTEyLDAsMCwwLDEuMzItLjg5MSwxMC4xMzUsMTAuMTM1LDAsMCwxLDEuMjI2LS44OTEsMi4yNywyLjI3LDAsMCwxLDEuMTc5LS4zNzVBMS41LDEuNSwwLDAsMSw1MiwyNi40MTJWMzkuMDcxYTIuODQzLDIuODQzLDAsMCwxLS41NzYsMiwyLjkyNiwyLjkyNiwwLDAsMS0yLjE1OS42MjZxLTIuOTIzLDAtNC4zODUuMDQ3dC0yLjEyMi4wNDdINDEuOTFhMy4zMjEsMy4zMjEsMCwwLDAsLjYuNjQ0LDUuNzE3LDUuNzE3LDAsMCwxLDIuMDc0LDQuMjIsNS4wNTQsNS4wNTQsMCwwLDEtMS42NSwzLjc1MUE1LjMzMSw1LjMzMSwwLDAsMSwzOS4xMTgsNTJhNS42LDUuNiwwLDAsMS00LjA1NS0xLjU0Nyw1LjA3MSw1LjA3MSwwLDAsMS0xLjYtMy44LDQuODYyLDQuODYyLDAsMCwxLC41MTktMi4zLDExLjQwNywxMS40MDcsMCwwLDEsMS41MTYtMS45NywyLjMzMywyLjMzMywwLDAsMCwuNDc1LS42OUgyOC4zM2ExLjM5NCwxLjM5NCwwLDAsMS0xLjA4NC0uNDY5LDIuMDExLDIuMDExLDAsMCwxLS41MTktMS4wMzJWMTUuOTA5YTEuOCwxLjgsMCwwLDEsLjQyNC0xLjE3MiwxLjQ0NCwxLjQ0NCwwLDAsMSwxLjE3OS0uNTE2aDcuNzMzYTEuOTQ5LDEuOTQ5LDAsMCwwLS4zNzctLjU2MmwtLjgtMS4xNzFhOC43ODgsOC43ODgsMCwwLDEtLjg0Ny0xLjUsNC43ODMsNC43ODMsMCwwLDEtLjQwNi0xLjY3NkE1LjM0OCw1LjM0OCwwLDAsMSwzOS4wODEsNGE1LjU1Miw1LjU1MiwwLDAsMSwzLjc5LDEuNTUzQTQuNjM1LDQuNjM1LDAsMCwxLDQ0LjU1LDkuMzQ1Yy0uMDI4LDEuNjg4LTIuMDIzLDQuMTI1LTIuMjQxLDQuMzc1YTEuNTc2LDEuNTc2LDAsMCwwLS4zLjVoNy4yNjFBMi42NSwyLjY1LDAsMCwxLDUyLDE2Ljg0N3Y0LjEyNnEwLDEuNzgyLTEuNywxLjc4MmExLjc0MywxLjc0MywwLDAsMS0xLjMxOS0uNTQ5QTEzLjE1MiwxMy4xNTIsMCwwLDAsNDYuOTUzLDIwLjU4OFpNMjguMzMsMzkuMDcxYS41ODIuNTgyLDAsMCwwLC42Ni42NTdoNy4xNjdhMS41NzksMS41NzksMCwwLDEsMS43OTIsMS43ODEsMi4yMzgsMi4yMzgsMCwwLDEtLjM4NywxLjI1NGMtLjI4My40MDgtLjU4Mi44MTMtLjksMS4yMTlzLS42MTMuODMtLjksMS4yNjZhMi41NDYsMi41NDYsMCwwLDAtLjQyNCwxLjQwNywzLjExNSwzLjExNSwwLDAsMCwxLjEzMSwyLjUzMiw0LjAyMiw0LjAyMiwwLDAsMCwyLjY0MS45MzgsMy43NzYsMy43NzYsMCwwLDAsMi40NTItLjkzOEEzLjExNSwzLjExNSwwLDAsMCw0Mi43LDQ2LjY1NWEyLjU0NiwyLjU0NiwwLDAsMC0uNDI0LTEuNDA3LDEyLjUxMywxMi41MTMsMCwwLDAtLjk0My0xLjI2NnEtLjUxOS0uNjA5LS45NDMtMS4xNzJhMi4yNjEsMi4yNjEsMCwwLDEtLjQ2Mi0xLjMsMS42MTQsMS42MTQsMCwwLDEsLjU2Ni0xLjMxMywyLjAwNiwyLjAwNiwwLDAsMSwxLjMyLS40NjhoNy40NXEuOTQyLDAsLjk0My0uNjU3VjI2LjUwNmExLjYwOSwxLjYwOSwwLDAsMC0uNzA3LjQyMnEtLjUxOS40MjEtMS4xNzkuODlhMTEuMDY5LDExLjA2OSwwLDAsMS0xLjUwOS44OTEsMy43NywzLjc3LDAsMCwxLTEuNy40MjIsNS40NSw1LjQ1LDAsMCwxLTMuNjc4LTEuNSw0LjI1LDQuMjUsMCwwLDEtMS4yMjYtMS44NzYsNy4wNTMsNy4wNTMsMCwwLDEtLjM3Ny0yLjI1LDUuMTY2LDUuMTY2LDAsMCwxLDEuNi0zLjcsNS4wMDksNS4wMDksMCwwLDEsMy42NzgtMS42NDEsNC44ODQsNC44ODQsMCwwLDEsMi4zNTcuNTE1QTcuNTg3LDcuNTg3LDAsMCwxLDQ5LjUxOCwyMC4yYy41MDYuNTg4Ljc4NS42MjQuNzg1LjYyNFYxNi44NDdhLjU0NC41NDQsMCwwLDAtLjMzMS0uNDY5LDEuNDIyLDEuNDIyLDAsMCwwLS43MDctLjE4N2gtNy40NWEyLjE0NywyLjE0NywwLDAsMS0xLjMyLS40MjIsMS41ODcsMS41ODcsMCwwLDEtLjU2Ni0xLjM2LDIuMDY3LDIuMDY3LDAsMCwxLC40MjUtMS4xNzJxLjQyNS0uNjA5Ljk0My0xLjIxOWExMi4yMjIsMTIuMjIyLDAsMCwwLC45NDMtMS4yNjYsMi41NDEsMi41NDEsMCwwLDAsLjQyNC0xLjQwNywzLjExOCwzLjExOCwwLDAsMC0xLjEzMi0yLjUzMiwzLjc3MSwzLjc3MSwwLDAsMC0yLjQ1MS0uOTM4LDMuODM5LDMuODM5LDAsMCwwLTIuNTk0LjkzOEEzLjE3OCwzLjE3OCwwLDAsMCwzNS40LDkuMzQ1YTIuNzc2LDIuNzc2LDAsMCwwLC40MjQsMS40NTQsMTAuMDM3LDEwLjAzNywwLDAsMCwuOSwxLjI2NWwuODQ5LDEuMjJhMi45MDksMi45MDksMCwwLDEsLjQ3MSwxLjEyNSwxLjYyNSwxLjYyNSwwLDAsMS0uNTE4LDEuMzYsMS45NTYsMS45NTYsMCwwLDEtMS4yNzQuNDIySDI5LjA4NHEtLjc1NSwwLS43NTQuNjU2Wm0yMy42NywwYTIuNywyLjcsMCwwLDEtLjU3NiwyLDIuNjc1LDIuNjc1LDAsMCwxLTIuMTU5LjYyNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LjE0NywzMS4wNzRhMy4zMjgsMy4zMjgsMCwwLDAtMi44NzgtMS4zNiw0LjQ0NSw0LjQ0NSwwLDAsMC0yLjEyLjQyMiw2LjE4NSw2LjE4NSwwLDAsMC0xLjE3OC44OTFxLS41NjcuNDcxLTEuMTMyLjg5MWMtLjM3My4yNzgtLjgwOC43NzMtMS4zLjc3NkgyNi43MjdWMTYuNDZhMy4zMzUsMy4zMzUsMCwwLDAtLjM3Ny0xLjUsMS40MzYsMS40MzYsMCwwLDAtMS40MTUtLjc1MUgxOS4yNzdjLS41LDAtLjc1NC4yNTEtLjc1NC44NDRhMS45MDcsMS45MDcsMCwwLDAsLjM3NywxLjEyNiw5LjE0Niw5LjE0NiwwLDAsMCwuOTQzLDEuMTI1LDUuMzQxLDUuMzQxLDAsMCwxLC45NDMsMS4yNjYsMy4yMzYsMy4yMzYsMCwwLDEsLjM3NywxLjU0Nyw0LjQ1NCw0LjQ1NCwwLDAsMS0xLjI3MywzLjE0MSw0LjA0OSw0LjA0OSwwLDAsMS0zLjA2NSwxLjM2LDMuOSwzLjksMCwwLDEtMy4wMTgtMS4zNiw0LjU0Nyw0LjU0NywwLDAsMS0xLjIyNS0zLjE0MSwyLjkzNiwyLjkzNiwwLDAsMSwuNDI0LTEuNTQ3LDEzLjU0OCwxMy41NDgsMCwwLDEsLjktMS4zMTNjLjMxNC0uNDA2LjYyNy0uNzgxLjk0My0xLjEyNWExLjU4OCwxLjU4OCwwLDAsMCwuNDcxLTEuMDc5cTAtLjg0My0xLjAzNy0uODQ0SDUuN2ExLjU4NywxLjU4NywwLDAsMC0xLjIyNi41MTZBMS44MDYsMS44MDYsMCwwLDAsNCwxNS45OTFWMzkuOWExLjgsMS44LDAsMCwwLC40NzEsMS4yNjYsMS41ODMsMS41ODMsMCwwLDAsMS4yMjYuNTE2aDguNDg4Yy42OTEsMCwxLjAzNS4yMzgsMS4wMzcuNzVhMS41NDcsMS41NDcsMCwwLDEtLjQyMi45NDRMMTMuODA3LDQ0LjVhNi41NDksNi41NDksMCwwLDAtLjk5LDEuMjY2LDMuMTE2LDMuMTE2LDAsMCwwLS40MjQsMS42NDEsNC4yMzcsNC4yMzcsMCwwLDAsMS4zNjcsMy40Nyw0Ljc5MSw0Ljc5MSwwLDAsMCw2LjIyNC0uMDQ3LDQuNTE3LDQuNTE3LDAsMCwwLDEuNDQ1LTMuMjgzLDMuNjMxLDMuNjMxLDAsMCwwLS41MTQtMS44ODljLS4yMTUtLjMwNy0uOTc4LTEuMTU4LS45NzgtMS4xNThMMTguOSw0My4zNzNhMS40OTIsMS40OTIsMCwwLDEtLjM3Ny0uOTM4cTAtLjc1Ljg0OC0uNzVoNS42NThxMS4yMjYsMCwxLjctMS41VjM1LjM0MUgyOC4zNWMuNTU3LDAsMS4wNTQuNTE5LDEuNDg5LjhhMTIuMjkxLDEyLjI5MSwwLDAsMSwxLjIyNi44OTFxLjU2NS40NjksMS4xNzkuODlhMy43ODYsMy43ODYsMCwwLDAsMS44MTYuNDIyLDMuMjU2LDMuMjU2LDAsMCwwLDMuMDg3LTEuNDA2LDUuMTE5LDUuMTE5LDAsMCwwLC45OS0zQTQuNzg4LDQuNzg4LDAsMCwwLDM3LjE0NywzMS4wNzRaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iaHRtbDUtYXBwbGljYXRpb25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQyLjMsMTlhOC4wMDgsOC4wMDgsMCwwLDAtNC4wNzgtNC40QTYuOTQ0LDYuOTQ0LDAsMCwwLDI3Ljc2OSw5LjkyOCw5LjQ1Myw5LjQ1MywwLDAsMCwxOS4wNiw0QzkuMDc4LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxYTguMzg3LDguMzg3LDAsMCwwLDIuNjEzLDE2LjM2NUgyOC4wMDd2LTNIMTIuNDEzYTUuMzg3LDUuMzg3LDAsMCwxLTEuNjc2LTEwLjUxNWwyLjMwOS0uNzU5TDEyLjc4MywxNC4zYTguMTE0LDguMTE0LDAsMCwxLDEuNS01LjI4NCw2LjQ4NCw2LjQ4NCwwLDAsMSwxMC43LDIuMDIybDEuMzA3LDMuMjlMMjkuMzE4LDEyLjVhMy45MjMsMy45MjMsMCwwLDEsMi4wNDQtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg5LDEuNTI5LDEuNDE1LjY0NkE0LjgsNC44LDAsMCwxLDM4LjkzMywxOVoiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzQuMDcgMjQuNjkxIDM1LjMwOCAyNC42OTEgMzUuMzA4IDI2LjA0NiAzNi42NiAyNi4wNDYgMzYuNjYgMjIgMzUuMzA4IDIyIDM1LjMwOCAyMy4zMzYgMzQuMDcgMjMuMzM2IDM0LjA3IDIyIDMyLjcxOCAyMiAzMi43MTggMjYuMDQ2IDM0LjA3IDI2LjA0NiAzNC4wNyAyNC42OTEiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMzguNDM5IDI2LjA0NiAzOS43OTIgMjYuMDQ2IDM5Ljc5MiAyMy4zNDIgNDAuOTgzIDIzLjM0MiA0MC45ODMgMjIgMzcuMjQ4IDIyIDM3LjI0OCAyMy4zNDIgMzguNDM5IDIzLjM0MiAzOC40MzkgMjYuMDQ2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjQyLjg5OSAyNC4wNCA0My44MyAyNS40NzkgNDMuODU0IDI1LjQ3OSA0NC43ODQgMjQuMDQgNDQuNzg0IDI2LjA0NiA0Ni4xMzEgMjYuMDQ2IDQ2LjEzMSAyMiA0NC43MiAyMiA0My44NTQgMjMuNDIxIDQyLjk4NiAyMiA0MS41NzYgMjIgNDEuNTc2IDI2LjA0NiA0Mi44OTkgMjYuMDQ2IDQyLjg5OSAyNC4wNCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1MC4wNTkgMjQuNzA4IDQ4LjE1NyAyNC43MDggNDguMTU3IDIyIDQ2LjgwNCAyMiA0Ni44MDQgMjYuMDQ2IDUwLjA1OSAyNi4wNDYgNTAuMDU5IDI0LjcwOCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzNi4xNyAzNC40OTEgMzYuNjg1IDQwLjI2OCA0MS4zNjMgNDAuMjY4IDQxLjM3NyA0MC4yNjggNDMuOTQ1IDQwLjI2OCA0My43MDIgNDIuOTg2IDQxLjM2MyA0My42MTcgNDEuMzYzIDQzLjYxOCA0MS4zNjEgNDMuNjE4IDM5LjAyNiA0Mi45ODggMzguODc2IDQxLjMxNiAzNy43NDIgNDEuMzE2IDM2Ljc3MSA0MS4zMTYgMzcuMDY1IDQ0LjYwNyA0MS4zNjEgNDUuNzk5IDQxLjM3IDQ1Ljc5NiA0MS4zNyA0NS43OTYgNDUuNjYyIDQ0LjYwNyA0NS42OTMgNDQuMjUzIDQ2LjE4NiAzOC43MzUgNDYuMjM3IDM4LjE3MiA0NS42NzIgMzguMTcyIDQxLjM3NyAzOC4xNzIgNDEuMzYzIDM4LjE3MiAzOC42MDMgMzguMTcyIDM4LjQxMSAzNi4wMjUgNDEuMzcgMzYuMDI1IDQxLjM3NyAzNi4wMjUgNDYuNDI4IDM2LjAyNSA0Ni40MzUgMzYuMDI1IDQ2LjQ3NyAzNS41NTQgNDYuNTczIDM0LjQ5MSA0Ni42MjMgMzMuOTI5IDQxLjM3NyAzMy45MjkgNDEuMzcgMzMuOTI5IDM2LjEyIDMzLjkyOSAzNi4xNyAzNC40OTEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC43NCwyNy45LDMyLjY3NCw0OS41OSw0MS4zNTcsNTJsOC43MDYtMi40MTNMNTIsMjcuOVpNNDcuNjg2LDQ3LjM1OCw0MS4zNyw0OS4xMDlsLTYuMzE2LTEuNzUxTDMzLjU2NywzMC43MTZoMTUuNloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","metadata":{"displayName":"HTML5 Application Repository Service"},"plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"feature-flags-dashboard","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"Dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZmVhdHVyZWZsYWdzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlY2Y7fS5jbHMtMntmaWxsOiMwNjNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mZWF0dXJlZmxhZ3M8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM3LDI5LjVIMTlhOSw5LDAsMCwwLDAsMThIMzdhOSw5LDAsMCwwLDAtMThabTAsMTUuNzVIMTlhNi43NSw2Ljc1LDAsMCwxLDAtMTMuNUgzN2E2Ljc1LDYuNzUsMCwwLDEsMCwxMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE5LDI2LjVIMzdhOSw5LDAsMCwwLDAtMThIMTlhOSw5LDAsMCwwLDAsMThabTE4LTE1YTYsNiwwLDEsMS02LDZBNiw2LDAsMCwxLDM3LDExLjVaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNyIgY3k9IjE3LjUiIHI9IjQuMTI1Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMzMuNjI1QTQuODc1LDQuODc1LDAsMSwwLDIzLjg3NSwzOC41LDQuODc1LDQuODc1LDAsMCwwLDE5LDMzLjYyNVptMCw3LjVBMi42MjUsMi42MjUsMCwxLDEsMjEuNjI1LDM4LjUsMi42MjksMi42MjksMCwwLDEsMTksNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/2250efa12769480299a1acd282b615cf/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","description":"Control the rollout of new features.","metadata":{"displayName":"Feature Flags"},"plans":[{"technicalName":"lite","description":"Feature Flags service - dev plan (for non-productive usage)","name":"lite","free":"true","metadata":{"bullets":["Basic on/off functionality"]}},{"technicalName":"standard","description":"Feature Flags service - standard plan","name":"standard","free":"true","metadata":{"bullets":["Support for different flag types and metrics"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtaW50ZWdyYXRpb24tYXV0b21hdGlvbi1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjc1LDQwYTYuNzIzLDYuNzIzLDAsMCwwLDYuNzUsNi43NUgyMlY0OUgyMC41YTguNzMsOC43MywwLDAsMS0zLjUxNi0uNyw5LjE1OCw5LjE1OCwwLDAsMS0yLjg0Ny0xLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSwxMi4yLDQzLjQ4LDguNzY3LDguNzY3LDAsMCwxLDExLjUsNDBsLjA3LTEuMTI1TDguOTY5LDQxLjlhMS4xLDEuMSwwLDAsMS0xLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAtMS41NDZsMy42NTYtNC4yMTlhMi4zODIsMi4zODIsMCwwLDEsMy4yMzQsMGwzLjcyNyw0LjIxOWEuOTY4Ljk2OCwwLDAsMSwwLDEuNTQ2LDEuMDM3LDEuMDM3LDAsMCwxLTEuNjE3LDBMMTMuODIsMzguODc1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ1LjI1LDE2QTYuNzIzLDYuNzIzLDAsMCwwLDM4LjUsOS4yNUgzN1Y3aDEuNWE4LjczLDguNzMsMCwwLDEsMy41MTYuNyw5LjE1OCw5LjE1OCwwLDAsMSwyLjg0NywxLjkzNEE4Ljk2OCw4Ljk2OCwwLDAsMSw0Ni44LDEyLjUyLDguNzY3LDguNzY3LDAsMCwxLDQ3LjUsMTZsLS4wNywxLjEyNSwyLjYtMy4wMjNhMS4xLDEuMSwwLDAsMSwxLjYxNywwLDEuMDI1LDEuMDI1LDAsMCwxLDAsMS41NDZsLTMuNjU2LDQuMjE5YTIuMzgyLDIuMzgyLDAsMCwxLTMuMjM0LDBsLTMuNzI3LTQuMjE5YS45NjguOTY4LDAsMCwxLDAtMS41NDYsMS4wMzcsMS4wMzcsMCwwLDEsMS42MTcsMGwyLjUzMiwzLjAyM1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy4yNSwzMy43NSw0NS43NSw0MGwtMTIuNSw2LjI1VjMzLjc1TTMyLjQwNiwzMWExLjM0OSwxLjM0OSwwLDAsMC0uOTg0LjQyMkExLjQ2MSwxLjQ2MSwwLDAsMCwzMSwzMi41VjQ3LjU5NGExLjMwNywxLjMwNywwLDAsMCwuNDIyLDEuMDMxLDEuNDM0LDEuNDM0LDAsMCwwLC45ODQuMzc1LDEuNjYxLDEuNjYxLDAsMCwwLC43NS0uMTg4TDQ4LjI1LDQxLjI2NmExLjQ0NCwxLjQ0NCwwLDAsMCwwLTIuNTMyTDMzLjE1NiwzMS4xODhhMS42NzQsMS42NzQsMCwwLDAtLjc1LS4xODhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuNTQ0LDE0LjA3MWE0LjgsNC44LDAsMCwwLTcuMTgyLTMuMTExQTYuMDU5LDYuMDU5LDAsMCwwLDE0LjM2OCw3QzcuMzc1LDcsOCwxNC4wNzEsOCwxNC4wNzFBNS41ODIsNS41ODIsMCwwLDAsOS44MDUsMjVIMjUuMTE0QTUuODIxLDUuODIxLDAsMCwwLDMxLDE5LjI2Niw1LjY3NSw1LjY3NSwwLDAsMCwyNy41NDQsMTQuMDcxWm0tMi40Myw4LjM1OEg5LjgwNWEzLjA4MiwzLjA4MiwwLDAsMS0zLjEtMy4wMzUsMy42MzIsMy42MzIsMCwwLDEsMi4xNi0yLjg4YzEuNTc4LS42MjUsMi4wMTktLjM5NCwxLjgzNi0yLjY0OGE1LjE2Miw1LjE2MiwwLDAsMSwxLjA1My0zLjQ0NiwzLjU1NywzLjU1NywwLDAsMSwyLjYxOS0uODQ5LDMuMzQ4LDMuMzQ4LDAsMCwxLDMuNDgzLDIuMzE1Yy45NzksMi40MzksMS43OTMsMi43MDksMy4zNDYsMS40NjFhMi4zNzcsMi4zNzcsMCwwLDEsMS42MjItLjUxLDIuMSwyLjEsMCwwLDEsMi4wNzksMS43Yy4xNTksMS41ODYuMjcsMS40NjYsMS41MTIsMS44NzhhMy4xMjgsMy4xMjgsMCwwLDEsMS44OSwyLjg1NEEzLjE3NywzLjE3NywwLDAsMSwyNS4xMTQsMjIuNDI5WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions","metadata":{"displayName":"Cloud Integration Automation Service"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' + body: '{"entitledServices":[{"name":"data-privacy-integration-application","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"data-privacy-integration-application","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-SYSTEM","productDisplayName":"Data Privacy Integration - Data Privacy Integration","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"data-privacy-integration-application-free","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"data-privacy-integration-application-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"auditlog-management","displayName":"Auditlog Management","description":"Retrieve the audit logs for your account.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"central","displayName":"Central","description":"Central plan for Auditlog Retrieval API","uniqueIdentifier":"auditlog-management-central","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-management-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"apiaccess","displayName":"apiaccess","description":"Access plan for authorizations, users, identity providers, and API endpoints","uniqueIdentifier":"xsuaa-apiaccess","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"application","displayName":"application","description":"Application plan to be used for business applications","uniqueIdentifier":"xsuaa-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"broker","displayName":"Broker","description":"To be used by business reuse services or service brokers","uniqueIdentifier":"xsuaa-broker","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"space","displayName":"Space","description":"Space specific name adoption","uniqueIdentifier":"xsuaa-space","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}}},{"name":"abap","displayName":"ABAP environment","description":"Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"abap_compute_unit","displayName":"abap_compute_unit","description":"Configurable ABAP Runtime in blocks of 16 GB","uniqueIdentifier":"abap-abap_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-abap_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana_compute_unit","displayName":"hana_compute_unit","description":"Configurable HANA Memory in blocks of 15 GB on AWS or 16 GB on Azure","uniqueIdentifier":"abap-hana_compute_unit","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-hana_compute_unit-SYSTEM","productDisplayName":"ABAP System - 16 GB HANA Compute Unit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db","displayName":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","uniqueIdentifier":"abap-16_abap_64_db","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["16 GB ABAP Runtime","60 GB HANA Memory"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Configurable ABAP Runtime and HANA Memory","uniqueIdentifier":"abap-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-standard-SYSTEM","productDisplayName":"ABAP System - ABAP System","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"16_abap_64_db_partner","displayName":"16 GB ABAP Runtime, 64 GB Database","description":"16 GB ABAP Runtime, 64 GB Database","uniqueIdentifier":"abap-16_abap_64_db_partner","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-16_abap_64_db_partner-SYSTEM","productDisplayName":"ABAP System - 16 GB ABAP Runtime, 64 GB Database","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"elastic","displayName":"ABAP system, optimized for elastic scaling","description":"ABAP system, optimized for elastic scaling","uniqueIdentifier":"abap-elastic","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"abap-elastic-SYSTEM","productDisplayName":"ABAP System - ABAP system, optimized for elastic scaling","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMjU3IDEwMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjQxNDIxOyI+PHRleHQgeD0iMzMwLjcwNnB4IiB5PSIxMDE0LjYxcHgiIHN0eWxlPSJmb250LWZhbWlseTonQmVudG9uU2Fucy1NZWRpdW0nLCAnQmVudG9uU2Fucyc7Zm9udC13ZWlnaHQ6NTAwO2ZvbnQtc2l6ZTo3MTMuNnB4O2ZpbGw6IzMyOGZjZDsiPkFCPHRzcGFuIHg9IjEzMTEuMjFweCAiIHk9IjEwMTQuNjFweCAiPkE8L3RzcGFuPlA8L3RleHQ+PHBhdGggZD0iTTE2MDEuMSw0MDAuMzY2Yy0xOS4yODEsLTIxMS45NTQgLTE4Ny44MTEsLTM3OS44MDkgLTQwMC4yNDMsLTM5OC42MzdjLTE0Ny4xMTUsLTEzLjA0IC0yOTAuOTczLDQ4LjI5MSAtMzgzLjIsMTYzLjM2OWw3MS4yODEsNTYuOWM3My4xMzcsLTkxLjI1NyAxODcuMjE2LC0xMzkuODkyIDMwMy44NzgsLTEyOS41NTJjMTY4LjQ1OSwxNC45MzIgMzAyLjEwNCwxNDguMDQgMzE3LjM5MywzMTYuMTJsOTAuODkxLC04LjJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik04OTUuOTc0LDIxMy4zMmMtMTUyLjg3MiwtMTMxLjY1NiAtMzgxLjIxNywtMTE3LjEzOSAtNTEwLjAyMywzMi40MjRjLTU2Ljc1Niw2NS45MDIgLTg3LjAwMSwxNTAuNjk3IC04NS4wNjcsMjM4LjQ5NWw5MC40NjcsLTAuMDI4Yy0xLjQ1LC02NS44NDggMjEuMjMzLC0xMjkuNDQ0IDYzLjgsLTE3OC44NzFjOTYuNjA0LC0xMTIuMTcyIDI2Ny44NjMsLTEyMy4wNiAzODIuNTE3LC0yNC4zMThsNTguMzA2LC02Ny43MDJaIiBzdHlsZT0iZmlsbDojNWI3YjkzOyIvPjxwYXRoIGQ9Ik0zMDEuNTMsMTAxNC45Yy0xNjMuMDQsLTAuNjc3IC0yOTcuMjM0LC0xMzEuMTEyIC0zMDEuNDI5LC0yOTUuMTkyYy00LjI3NCwtMTY3LjE0IDEyNy45NTQsLTMwNi4zMDYgMjk1LjA5NCwtMzEwLjU3OWM0Ljk1MywtMC4xMjcgOS45MDgsLTAuMTMyIDE0Ljg2MSwtMC4wMTVsLTEuNzgsNzUuNzEzYy0zLjcxNCwtMC4wODggLTcuNDMxLC0wLjA4NCAtMTEuMTQ2LDAuMDExYy0xMjUuMzU1LDMuMjA1IC0yMjQuNTI1LDEwNy41NzkgLTIyMS4zMiwyMzIuOTM0YzMuMjA1LDEyNS4zNTUgMTA3LjU3OSwyMjQuNTI2IDIzMi45MzQsMjIxLjMyMWM4LjQ0MiwtMC4yMTYgMTYuODY1LC0wLjkwMiAyNS4yMywtMi4wNTZsLTMyLjQ0NCw3Ny44NjNabTMyLjgyMywtNzcuNTk4bC0wLjA1NywtMC4zMDlsMC4wMTMsLTAuMDAybDAuMDQ0LDAuMzExWiIgc3R5bGU9ImZpbGw6IzViN2I5MzsiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/11d62652aa2b4600a0fa136de0789648.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/abap-environment"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap","description":"Develop ABAP cloud apps and extensions, leveraging innovations of SAP HANA.","metadata":{"displayName":"ABAP environment"},"plans":[{"name":"standard","description":"Configurable ABAP Runtime and HANA Memory","technicalName":"standard","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 4, 8, 16, 32 or 64"]}},{"name":"16_abap_64_db (DEPRECATED)","description":"This plan should not be used anymore as it will soon be removed. Please use plan standard instead.","technicalName":"16_abap_64_db","metadata":{"bullets":["16 GB ABAP Runtime","60 GB HANA Memory"]}},{"name":"saas_oem","description":"Configurable ABAP Runtime and HANA Memory for SaaS and OEM scenarios","technicalName":"saas_oem","metadata":{"bullets":["Configurable ABAP Runtime in blocks of 16 GB: 1, 2, 4, 6, 8, 16 or 24","Configurable HANA Memory in blocks of 15 GB on AWS: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116 or 120"]}},{"name":"free","description":"Free plan. For small proof-of-concept projects with limited number of repository objects (max. 500). The instance will be only available during regular office hours. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","technicalName":"free","metadata":{"bullets":["16 GB ABAP Runtime","30 GB HANA Memory"]}}]}}},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","description":"Standard User Interface for managing content operations for SAP BTP applications","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Content Agent UI","uniqueIdentifier":"content-agent-ui-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager-service","displayName":"personal-data-manager-service","description":"Manage requests and inform data subjects about their personal data in processing.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free Plan","uniqueIdentifier":"personal-data-manager-service-free","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-free-SYSTEM","productDisplayName":"Personal Data Manager Service - free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"personal-data-manager-service-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-service-standard-SYSTEM","productDisplayName":"Personal Data Manager Service - Personal Data Manager Service","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-build-apps","displayName":"SAP Build Apps","description":"SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-appgyver-ee-free","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-free-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Free","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["See the Application Plans topic in our user guide for a complete list of restrictions."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"community","displayName":"Community","description":"Community plan for SAP Build Apps","uniqueIdentifier":"sap-appgyver-ee-community","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-community-SYSTEM","productDisplayName":"SAP Build Apps - Community","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-standard","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-standard-SYSTEM","productDisplayName":"SAP AppGyver Enterprise Edition - Standard","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"partner","displayName":"partner","description":"Use the plan for productive development.","uniqueIdentifier":"sap-appgyver-ee-partner","provisioningMethod":"NONE_REQUIRED","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"sap-appgyver-ee-partner-SYSTEM","productDisplayName":"SAP Build Apps - Partner","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjk5LjEgMTM3MC4zIiB2aWV3Qm94PSIwIDAgMTI5OS4xIDEzNzAuMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzAzOTQ4Ij48cGF0aCBkPSJtNjc2LjcgNDk0LjZ2LjEgMTU4LjJjMCA4LjIgNi43IDE0LjkgMTQuOSAxNC45aDM2OS4xYzQuNy4xIDguOS0yLjggMTAuNi03LjIgMS43LTQuMSA3Mi44LTE3Ny4xIDc2LjQtMTg1LjcgMC0uMS0uMS0uMS0uMS0uMS0xLjcgMS42LTMuNyAyLjctNS45IDMuNS0yLjUuOC01LjEgMS4yLTcuNiAxLjJsLTQ0Mi41LjRjLTguMiAwLTE0LjkgNi42LTE0LjkgMTQuN3oiLz48cGF0aCBkPSJtNzYwLjEgMTc3LjFjNi4zLTYuMyAxMy44LTExLjQgMjItMTUgNC4zLTEuOCA4LjgtMy4zIDEzLjMtNC4zLjEgMCAuMS0uMSAwLS4xaC0yNTIuNGMtMTguNyAwLTM2LjYgNy4zLTUwIDIwLjNsLTMyMy4xIDMyMS41Yy0xMyAxMy40LTIwLjMgMzEuMy0yMC4zIDUwdjI1Mi44YzAgLjEuMS4xLjEgMCAyLjgtMTMuNCA5LjUtMjUuNyAxOS4zLTM1LjN6Ii8+PHBhdGggZD0ibTU3Ny4zIDExNzQuOSA4My41LTgzLjYtMTA5LjktMTEwLjYuNC0uNC0yODIuNC0yODEuNS04My41IDgzLjVjLTUuMiA1LjItOS4zIDExLjMtMTIuMiAxOC0zLjUgOC01LjMgMTYuNi01LjIgMjUuNC4yIDEyIDMgMjMuOCA4LjQgMzQuNSA2LjcgMTMuNiAxNS41IDI2IDI2LjEgMzYuOCAxNSAxNS4xIDI0NyAyNDcuNyAyNjIuMSAyNjIuOSAxMC4zIDkuNyAyMiAxNy45IDM0LjggMjQuMSAxMC44IDUuMyAyMi42IDguMSAzNC42IDguMyA4LjggMCAxNy40LTEuNyAyNS41LTUuMiA2LjUtMi45IDEyLjYtNyAxNy44LTEyLjJ6Ii8+PHBhdGggZD0ibTExNDguNSA4OTQuMmMtMS45LTQuMy03Ni42LTE4NS45LTc2LjYtMTg1LjktLjkgNC42LTMuMyA5LjMtNi42IDEyLjUtNTcuNyA1Ny43LTQ1OC44IDQ1OS4xLTQ3MC45IDQ3MS4zLTYuMyA2LjMtMTMuOCAxMS40LTIyIDE1LTUuOSAyLjctMTIuMiA0LjUtMTguNyA1LjVoMjU3LjNjMTguNyAwIDM2LjYtNy4zIDUwLTIwLjMgMCAwIDI4Mi0yODEuOSAyODUuMy0yODUuMyAzLjQtMy4zIDQuMy04LjQgMi4yLTEyLjh6Ii8+PHBhdGggZD0ibTEwMzEuNyA2OTkuNGgtMzQwYy04LjIgMC0xNC44IDYuNy0xNC44IDE0Ljl2MTU4LjJjMCA4LjEgNi42IDE0LjcgMTQuOCAxNC44aDE2OGwxNzYuNi0xNzYuN2MxLjItMS4yIDEuOS0yLjggMS45LTQuNi4xLTMuNy0yLjktNi42LTYuNS02LjZ6Ii8+PHBhdGggZD0ibTExMjUuNCA0NDIuOC0yNi44LTI2LjctNC40LTQuNC0yMDAtMTk4LjVjLTExLjEtMTAuOS0yMy44LTIwLTM3LjctMjYuOS0xMC43LTUuMy0yMi41LTguMi0zNC41LTguNC04LjcgMC0xNy4zIDEuNy0yNS4zIDUuMi02LjggMi45LTEzIDctMTguMyAxMi4ybC04My40IDgzLjUgMTc0LjUgMTc0LjVoMjUxLjljMy4zIDAgNi0yLjcgNi02IDAtMS44LS44LTMuNC0yLTQuNXoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-960"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/BUILD_APPS/"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-build-apps"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"sap-build-apps","plans":[{"technicalName":"additional-active-users","name":"additional-active-users","description":"Additional Active Users","metadata":{"bullets":[]}},{"technicalName":"additional-capacity-units","name":"additional-capacity-units","description":"Additional Capacity Units","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Use the free offering for evaluation purposes. Restrictions apply to the enabled features. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["See the Application Plans topic in our user guide for a complete list of restrictions."]}},{"technicalName":"partner","name":"partner","description":"Use the plan for productive development.","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Use the plan for productive development.","metadata":{"bullets":[]}}]}}},{"name":"api-management-apiportal-stakeholder","displayName":"API Management, API portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. An API Portal application in SAP API Management helps you grow new revenue streams. You can not only configure and share but also monetize you digital assets, enabling up-sell and cross-sell though your eco-system.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, API portal","description":"API Management, API portal","uniqueIdentifier":"api-management-apiportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-apiportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, API portal - API Management, API portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"aem-validation-service","displayName":"SAP Integration Suite, advanced event mesh","description":"Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aem-validation-service-plan","displayName":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","uniqueIdentifier":"aem-validation-service-aem-validation-service-plan","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"aem-validation-service-aem-validation-service-plan-SYSTEM","productDisplayName":"SAP Integration Suite, advanced event mesh - SAP Advanced Event Mesh Validation service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwMzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy42NjAxIDRDMjAuMDQ2OCA0IDE0LjYzNzcgMTAuMTk3MiAxMy43MzY1IDE2LjY2NzJDMTEuMjg3NSAxNi44MTMgOS4xMjUwOCAxNy43MzMzIDcuNDQ1NTkgMTkuMjc5MkM1LjE3MzUxIDIxLjM3MDYgNCAyNC40MDYxIDQgMjcuNjA3M0M0IDMwLjU4MjMgNC45MDI0MyAzMy4zOTQzIDYuOTI4NDUgMzUuNDczNEM4Ljk2ODEyIDM3LjU2NjUgMTEuODYzOSAzOC42MjY4IDE1LjI3MzUgMzguNjI2OEgxOVYzMy4xNjQ5QzE5IDI5Ljk4MiAyMS41NjUyIDI3LjM1NzEgMjQuNzg0MyAyNy4zNTcxQzI3LjI5NzQgMjcuMzU3MSAyOS41MDQzIDI4Ljk4MiAzMC4yNzk4IDMxLjM1MjVMMzAuNDAyIDMxLjcyNjJMMzAuNTE0OSAzMS4zNzM2QzMxLjI3NjYgMjguOTkzOCAzMy40ODQyIDI3LjM1NzEgMzYuMDAyMyAyNy4zNTcxQzM5LjIxMDEgMjcuMzU3MSA0MS43NjYxIDI5Ljk3MjggNDEuNzY2MSAzMy4xNDQyVjM1LjI0MDhDNDIuNzYxNSAzNC4zMzc5IDQ0LjA3NTYgMzMuOTIwOCA0NS40NDMyIDM0LjE4N0M0Ni4zOTA2IDM0LjM3MTUgNDcuMTQ2MiAzNC44NDE5IDQ3LjcwMTYgMzUuMzEwMkM1MC4yMTMxIDMzLjAzOTIgNTEuODQ5OSAyOS42OTYgNTEuODQ5OSAyNS41NTAyQzUxLjg0OTkgMTguNDY3NSA0Ni43ODggMTMuMDI0NiA0MC42OTQgMTIuNDQ4OUMzOC4yNTEyIDcuMzk3NTMgMzMuNzE2NyA0IDI3LjY2MDEgNFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8cGF0aCBkPSJNNDQuNDEzOCA0OC44OTg4QzQzLjcxMDUgNDkuNjE0IDQzLjAxNTggNTAuNzIyNyA0My43MTkgNTEuNDM3OUM0NC40MjIzIDUyLjE1MzIgNDUuMjIwMiA1Mi4yMDMyIDQ1LjkyMzQgNTEuNDg3OUw1MS4zMjI1IDQ1Ljk5NjZDNTIuMDI1OCA0NS4yODEzIDUyLjAyNTggNDQuMTIyNiA1MS4zMjI1IDQzLjQwNzRMNDUuOTIzNCAzNy45MTZDNDUuMjIwMiAzNy4yMDA3IDQ0LjM5MzkgMzYuOTAzIDQzLjY5MDYgMzcuNjE4MkM0Mi44MTEyIDM4LjMwNDkgNDQuMDM1NSAzOS43ODk5IDQ0LjczODcgNDAuNTA1Mkw0Ni43NTQ0IDQyLjkxMTVMMzUuNjU0OSA0Mi45MjI3TDM1LjY1NDEgNDQuMzQ3MUMzNS42NTM1IDQ1LjMyOTMgMzYuNDQzNCA0Ni4xMjUzIDM3LjQxNzMgNDYuMTI0Mkw0Ni45NTMgNDYuMTE0MUw0NC40MTM4IDQ4Ljg5ODhaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTAzNikiLz4KPHBhdGggZD0iTTIxLjk5NjcgMzMuNDU3N0MyMS45OTY3IDMxLjkzNDcgMjMuMjIwOSAzMC43IDI0LjczMSAzMC43QzI1LjkxMSAzMC43IDI2Ljk1NzkgMzEuNDYzNCAyNy4zMjc2IDMyLjU5MzZMMjkuNTcwMiAzOS40NDg3QzI5LjY5NDkgMzkuODI2MiAyOS44NDE3IDQwLjM1NTQgMzAuMDEwNSA0MS4wMzY0QzMwLjE3OTMgNDEuNzE3NCAzMC4yODk0IDQyLjE2ODkgMzAuMzQwNyA0Mi4zOTA5QzMwLjM5OTQgNDIuMTY4OSAzMC41MTY4IDQxLjcyNDggMzAuNjkzIDQxLjA1ODZDMzAuODc2NCA0MC4zODUxIDMxLjAzMDYgMzkuODY2OSAzMS4xNTUzIDM5LjUwNDNMMzMuMzY2NCAzMi41OTYyQzMzLjcyODIgMzEuNDY1OSAzNC43NzE0IDMwLjcgMzUuOTQ4OSAzMC43QzM3LjQ0NzcgMzAuNyAzOC42NjI3IDMxLjkyNTQgMzguNjYyNyAzMy40MzdWNDIuOTE5N0wzNS42NTQ5IDQyLjkyMjdMMzUuNjU3NiAzNi44NjE5QzM1LjY1NzYgMzYuMDYyNSAzNS42NzU5IDM1LjMwNzUgMzUuNzEyNiAzNC41OTY5QzM1Ljc1NjYgMzMuODg2NCAzNS43Mzg1IDMzLjYwMzggMzUuNzc4NiAzMy40NzU2QzM1Ljc3MTMgMzMuNDgzIDM1LjY5NzkgMzMuNzQyIDM1LjU1ODUgMzQuMjUyOEMzNS40ODUxIDM0LjQ5NyAzNS4zMzEgMzUuMDIyNSAzNS4wOTYxIDM1LjgyOTNDMzQuODY4NyAzNi42MzYxIDM0LjY4ODkgMzcuMjMxOSAzNC41NTY4IDM3LjYxNjhMMzIuMDcxMyA0NS4wODA0QzMxLjgyIDQ1LjgzNSAzMS4xMTg5IDQ2LjM0MzQgMzAuMzI5NyA0Ni4zNDM0QzI5LjU0MDUgNDYuMzQzNCAyOC44Mzk1IDQ1LjgzNSAyOC41ODgyIDQ1LjA4MDRMMjYuMTAyNyAzNy42MTY4QzI1Ljk0ODYgMzcuMTY1MyAyNS43Mjg0IDM2LjQ1ODUgMjUuNDQyMiAzNS40OTYyQzI1LjE2MzMgMzQuNTI2NiAyNC45Njg4IDMzLjg1MzEgMjQuODU4OCAzMy40NzU2TDI0Ljg4MDggMzMuNzk3NkMyNC44ODgxIDMzLjkxNiAyNC45MTAxIDM0LjMzNDIgMjQuOTQ2OCAzNS4wNTIxQzI0Ljk4MzUgMzUuNzYyNyAyNS4wMDE5IDM2LjM2NTkgMjUuMDAxOSAzNi44NjE5VjQ0LjgyNzlDMjUuMDAxOSA0NS42NjQ5IDI0LjMyOTEgNDYuMzQzNCAyMy40OTkzIDQ2LjM0MzRDMjIuNjY5NCA0Ni4zNDM0IDIxLjk5NjcgNDUuNjY0OSAyMS45OTY3IDQ0LjgyNzlWMzMuNDU3N1oiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTAzNiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40MjAzIDkuMDg0MjMpIHJvdGF0ZSgzNi4xOTQxKSBzY2FsZSg0MS4wNTA2IDczLjkzMTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwMzYiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYuNzQ3NyAzMy44OTY3KSByb3RhdGUoMzUuNTA3Nikgc2NhbGUoMjUuNjgyMyAyOS40NzM2KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MDM2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Ljc0NzcgMzMuODk2Nykgcm90YXRlKDM1LjUwNzYpIHNjYWxlKDI1LjY4MjMgMjkuNDczNikiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwMzYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-912"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_ADVANCED_EVENT_MESH/728c56cd25854f0fad611eb26ae17152/0d4bcd5a2be744688039160b9bb289ae.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/advanced-event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"aem-validation-service","plans":[{"technicalName":"aem-validation-service-plan","name":"aem-validation-service-plan","description":"Service plan to deploy validation broker service for advanced event mesh.","metadata":{"bullets":[]}}]}}},{"name":"automationpilot","displayName":"Automation Pilot","description":"SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard plan features","uniqueIdentifier":"automationpilot-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-standard-SYSTEM","productDisplayName":"Automation Pilot - Automation Pilot","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"automationpilot-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"automationpilot-free-SYSTEM","productDisplayName":"Automation Pilot - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0b21hdGlvbi1waWxvdCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMi41MzIsMzkuNjA5bC0xLjM5NS44YTguMzI1LDguMzI1LDAsMCwxLS44MzQuNDE4cS0uNTIxLjIyMi0xLjExLjQ0M0wyNy4yNSw0MnY0aC00LjVWNDJMMjAuOCw0MS4yNjhjLS4zOTEtLjE0Ni0uNzU3LS4yOTItMS4xLS40NDFhNy41ODQsNy41ODQsMCwwLDEtLjgyNi0uNDE0bC0yLjA0NC0xLjE3OUwxNS4yLDQwLjk0M2wtMS4zMjEsMS4zODgtMy4yMTUtMy4yMTYsMS4zNjUtMS4zNjUsMS40MzctMS40MzctLjgtMS44NjhjLS4xODUtLjQzLS4zODYtLjg1OS0uNjEtMS4zMTNhMi44MzYsMi44MzYsMCwwLDEtLjIxOC0uNmwtLjU2MS0yLjI4NUg3di00LjVoNC4yN2wuNTYzLTIuMjgxYTIuOTc4LDIuOTc4LDAsMCwxLC4yMjYtLjYxNWMuMjE2LS40MzQuNDE5LS44NjguNjA2LTEuMzA2bC44LTEuODY0TDEyLjAyOCwxOC4yNWwtMS4zNjUtMS4zNjUsMy4yMjItMy4yMjMsMS4zNjUsMS4zNjYsMS40MzcsMS40MzcsMS44NjgtLjhxLjY1Mi0uMjgsMS4zLS42YTMuMTc2LDMuMTc2LDAsMCwxLC42MjgtLjIyOWwyLjI2OC0uNTdWMTBoNC41djQuMjU3bDIuMjY0LjU3M2EzLjE2MywzLjE2MywwLDAsMSwuNjE4LjIyM2MuNDM5LjIyMS44NzguNDI0LDEuMzIuNjEzbDEuMDguNDYxVjEyLjg2MWMtLjM1Mi0uMTUyLS43LS4zMTItMS4wNTItLjQ4OGE2LjE2Nyw2LjE2NywwLDAsMC0xLjIzLS40NTF2LTIuM0EyLjUyNywyLjUyNywwLDAsMCwyNy42MjUsN2gtNS4yNUEyLjUyNywyLjUyNywwLDAsMCwxOS43NSw5LjYyNXYyLjNhNi4wNTYsNi4wNTYsMCwwLDAtMS4yMy40NTFjLS4zODUuMTkyLS43NjcuMzY5LTEuMTQ5LjUzM2wtMS42NDEtMS42NGEyLjU1MywyLjU1MywwLDAsMC0xLjg4Ni0uNzM5LDIuNDQ5LDIuNDQ5LDAsMCwwLTEuOC43MzlMOC4yNjYsMTUuMDM5YTIuNDU0LDIuNDU0LDAsMCwwLS43MzksMS44MDUsMi43MywyLjczLDAsMCwwLC43MzksMS44ODZsMS42NCwxLjY0MWMtLjE2NC4zODUtLjM0My43NjctLjUzMywxLjE0OWE1LjkzLDUuOTMsMCwwLDAtLjQ1MSwxLjIzaC0yLjNBMi41MjcsMi41MjcsMCwwLDAsNCwyNS4zNzV2NS4yNWEyLjU4OSwyLjU4OSwwLDAsMCwuNzM4LDEuODQ2LDIuNDgzLDIuNDgzLDAsMCwwLDEuODg3Ljc3OWgyLjNhNS44MjYsNS44MjYsMCwwLDAsLjQ1MSwxLjIzYy4xOS4zODUuMzY5Ljc2Ny41MzMsMS4xNDlMOC4yNjYsMzcuMjdhMi42NzQsMi42NzQsMCwwLDAsMCwzLjY5MWwzLjc3MywzLjc3M2EyLjQ0OSwyLjQ0OSwwLDAsMCwxLjguNzM5LDIuNTUzLDIuNTUzLDAsMCwwLDEuODg2LS43MzlsMS42NDEtMS43MjJhMTAuNywxMC43LDAsMCwwLDEuMTQ5LjU3NGMuMzgxLjE2NC43OTIuMzI4LDEuMjMuNDkydjIuM2EyLjYsMi42LDAsMCwwLC43MzgsMS44NDZBMi40OSwyLjQ5LDAsMCwwLDIyLjM3NSw0OWg1LjI1YTIuNDkzLDIuNDkzLDAsMCwwLDEuODg3LS43NzksMi42LDIuNiwwLDAsMCwuNzM4LTEuODQ2di0yLjNxLjY1NC0uMjQ2LDEuMjMtLjQ5MmExMS4yMTMsMTEuMjEzLDAsMCwwLDEuMDUyLS41MjZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDcuNSwzNS41YTQuNDk0LDQuNDk0LDAsMCwwLTQuMjI0LDNIMzkuMTIxbC02LTZIMzAuOTY2YTcuNDMzLDcuNDMzLDAsMCwwLDEuMzgzLTNoNC45MjdhNC41LDQuNSwwLDEsMCwwLTNIMzIuMzQ5YTcuNDMzLDcuNDMzLDAsMCwwLTEuMzgzLTNoMi4xNTVsNi02aDQuMTU1YTQuNSw0LjUsMCwxLDAsMC0zaC01LjRsLTYsNkgyNWE3LjUsNy41LDAsMCwwLDAsMTVoNi44NzlsNiw2aDUuNGE0LjQ5Miw0LjQ5MiwwLDEsMCw0LjIyNC02Wm0wLTIxQTEuNSwxLjUsMCwxLDEsNDYsMTYsMS41LDEuNSwwLDAsMSw0Ny41LDE0LjVabS02LDEyQTEuNSwxLjUsMCwxLDEsNDAsMjgsMS41LDEuNSwwLDAsMSw0MS41LDI2LjVaTTIwLjUsMjhBNC41LDQuNSwwLDEsMSwyNSwzMi41LDQuNTA1LDQuNTA1LDAsMCwxLDIwLjUsMjhabTI3LDEzLjVBMS41LDEuNSwwLDEsMSw0OSw0MCwxLjUsMS41LDAsMCwxLDQ3LjUsNDEuNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-463"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AUTOMATION_PILOT"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-us30"},{"key":"cf-eu10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap21"}],"CFService":{"name":"automationpilot","description":"Fully automates recommended actions, alert remediations and repeating error-prone operation tasks.","metadata":{"displayName":"Automation Pilot"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan features","free":"false","metadata":{"displayName":"standard","bullets":["25 catalogs, 1000 commands and 1000 inputs","1000 executions (up to 100 running) and 100 scheduled executions ","5 running scripts (others wait on a queue)","10 Service Accounts and 300 API calls per minute","72h Execution Logs Retention"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"displayName":"free","bullets":["5 catalogs, 50 commands and 50 inputs","50 executions (up to 5 running) and 5 scheduled executions","1 running script (others wait on a queue)","2 Service Accounts and 120 API calls per minute","24h Execution Logs Retention"]}}]}}},{"name":"bmb-app","displayName":"business process model connector for SAP Signavio solutions","description":"Synchronizes business process models between SAP Signavio Process Manager & SAP Solution Manager 7.2","businessCategory":{"id":"OTHER","displayName":"Other"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"free","uniqueIdentifier":"bmb-app-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"dq-services","displayName":"Data Quality Services","description":"SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free plan for Data Quality Services.","uniqueIdentifier":"dq-services-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-free-SYSTEM","productDisplayName":"Data Quality Services - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for Data Quality Services","uniqueIdentifier":"dq-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"dq-services-standard-SYSTEM","productDisplayName":"Data Quality Services - Standard plan for Data Quality Services.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"$18n{applicationCoordinates.serviceDescription.title_documentation}","propagateTheme":"false","propagateLocale":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"dq-services","description":"Embed data quality services to validate addresses and enrich with geocodes.","metadata":{"displayName":"Data Quality Services"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan for Data Quality Services","metadata":{"bullets":["Address Cleanse","Address Type-ahead","Geocode","Reverse Geocode"]}}]}}},{"name":"enterprise-messaging","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Event Mesh - default plan","uniqueIdentifier":"enterprise-messaging-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"enterprise-messaging-default-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["providing next generation features"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Enterprise Messaging","description":"Enterprise Messaging","uniqueIdentifier":"8005999","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"8005999-SYSTEM","productDisplayName":"Enterprise Messaging - Enterprise Messaging","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"neo-eu2-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu2-canary","environment":"neo","iaasProvider":"SAP","supportsTrial":false,"provisioningServiceUrl":"https://cisservices.int.sap.eu2.hana.ondemand.com/com.sap.core.commercial.service.web","saasRegistryServiceUrl":null,"domain":"int.sap.eu2.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTJIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM3OS00LjIzNiwyLjAxLTcuMDEyLDEuMzc3LTEuNiwzLjUyNC0yLjUsNi4zODEtMi42NjdhOC41NjMsOC41NjMsMCwwLDEsNy44LDUuMzU1bDEuMzA2LDMuMjg5LDMuMDMxLTEuODI3YTUuNDUxLDUuNDUxLDAsMCwxLDIuODQzLS44MTksNS41NDYsNS41NDYsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC42LDI1YzIuMiwxLDIuOCwzLjAxLDMuMjg1LDUuMzA4SDUxLjFjLS41MTctMy41OS0yLjA2OS02LjU4Mi01LjI2LTguMDM3YTguNDg3LDguNDg3LDAsMCwwLTEyLjc4My01LjcxM0ExMS41NTgsMTEuNTU4LDAsMCwwLDIyLjQxLDkuMzEyQzkuNzUzLDkuOTgzLDExLjA5LDIyLjMsMTEuMDksMjIuM2ExMC4yNTcsMTAuMjU3LDAsMCwwLDMuMiwyMC4wMTJIMTkiLz48cG9seWxpbmUgY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ2Ljc1NiA0Mi4zNjkgNDMuNjU3IDQ1LjQ2OCA0NS41NjQgNDcuMzc1IDUyIDQwLjkzOSA0NS41NjQgMzQuNTAzIDQzLjY1NyAzNi40MSA0Ni42MzYgMzkuMzEzIDM3LjAzOCAzOS4zMTMgMzcuMDIyIDQyLjMyNiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxOS4wMDEgNDIuMzEgMjIuMDAxIDQyLjMxIDIyLjAwMSAzMS43IDI3Ljk4IDM2LjMxIDM0LjAwMSAzMS43IDM0LjAwMSA0Mi4zMSAzNy4wMjIgNDIuMzI2IDM3LjEwMyAyNy4zMSAzNC4wMDEgMjcuMzEgMjcuOTMyIDMxLjkwMyAyMi4wMDEgMjcuMzEgMTkuMDAxIDI3LjMxIDE5LjAwMSA0Mi4zMSIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/enterprise-messaging.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_ENTERPRISE_MESSAGING/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/event-mesh"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"enterprise-messaging","description":"Connect applications, services and systems across different landscapes.","metadata":{"displayName":"Event Mesh"},"plans":[{"technicalName":"default","name":"default","description":"Event Mesh - default plan","metadata":{"bullets":["providing next generation features"]}}]}}},{"name":"process-automation-service","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","uniqueIdentifier":"processautomationservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"processautomationservice-standard-SYSTEM","productDisplayName":"Process Automation Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation-service","plans":[{"technicalName":"standard","name":"standard","description":"Allows you to create a service instance when coupled with the free (Application) or standard (Application) entitlements. You must select this entitlement to fully use all capabilities of SAP Build Process Automation. When using it with the free (Application) entitlement, no additional costs are charged.","metadata":{"bullets":[]}}]}}},{"name":"lbn-intelligent-insights-dev","displayName":"SAP Logistics Business Network, intelligent insights option","description":null,"businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"lbn-intelligent-insights-dev-default","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"custom-domain-manager","displayName":"Custom Domain Service","description":"The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","uniqueIdentifier":"custom-domain-manager-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"custom-domain-manager-standard-SYSTEM","productDisplayName":"Custom Domain - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Creating and managing custom domains."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3VzdG9tLWRvbWFpbiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3VzdG9tLWRvbWFpbjwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzNCIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOSIgeT0iNyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMiIHJ4PSIwLjc1Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNCw0NnYwYTIuODc3LDIuODc3LDAsMCwwLC4yMzYsMS4xNTcsMy4wMjgsMy4wMjgsMCwwLDAsMS42MDYsMS42MDdBMi44NzUsMi44NzUsMCwwLDAsNyw0OUg0OWEzLjAxMywzLjAxMywwLDAsMCwzLTNWMTZhMy4wMTMsMy4wMTMsMCwwLDAtMy0zSDE2VjcuNzVBLjY2NC42NjQsMCwwLDAsMTUuMjUsN0g0Ljc1QS42NjMuNjYzLDAsMCwwLDQsNy43NVpNNDksMTZsMCwwLDAsMzBMNyw0Niw3LDE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM5LjIxNCwyNi43M2ExMi43NDUsMTIuNzQ1LDAsMCwwLTIuMTA3LTMuNTczLDExLjkxNCwxMS45MTQsMCwwLDAtMy4yMS0yLjYyOCwxMi4wNTUsMTIuMDU1LDAsMCwwLTMuOTktMS4zOTNsMCwwYy0uMzE3LS4wNDYtLjYyNC0uMDc4LS45MjEtLjFhMTUuNjkxLDE1LjY5MSwwLDAsMC0xLjksMGMtLjI5NC4wMjYtLjYuMDU4LS45MjIuMTA3YTExLjY2MywxMS42NjMsMCwwLDAtNC4wMjQsMS40LDEyLjQ4MiwxMi40ODIsMCwwLDAtMy4yLDIuNjIyLDEyLjE2MSwxMi4xNjEsMCwwLDAtMi4xNDYsMy41NzlBMTEuNjkxLDExLjY5MSwwLDAsMCwxNiwzMWExMS40NzIsMTEuNDcyLDAsMCwwLC45NTcsNC42NDIsMTIuMjIxLDEyLjIyMSwwLDAsMCw2LjQsNi40QTExLjUsMTEuNSwwLDAsMCwyOCw0M2ExMS42MzgsMTEuNjM4LDAsMCwwLDQuNzA3LS45NTcsMTIuMzg5LDEyLjM4OSwwLDAsMCwzLjgxNS0yLjU4NkExMS45MDYsMTEuOTA2LDAsMCwwLDQwLDMxLDExLjcxOSwxMS43MTksMCwwLDAsMzkuMjE0LDI2LjczWm0tMy4zMTQtMUgzMi40NzdhMTMuMjUxLDEzLjI1MSwwLDAsMC0yLjEwNy0zLjg4NEE4Ljk0MSw4Ljk0MSwwLDAsMSwzNS45LDI1LjczWm0tNC4wMTYsNWExMS43NjUsMTEuNzY1LDAsMCwxLS4xMzIsMS43NzhBMTQuNzgyLDE0Ljc4MiwwLDAsMSwzMS40MjMsMzRoLTYuNzhhMTQuMjUyLDE0LjI1MiwwLDAsMS0uMzI5LTEuNDg5LDExLjUxMSwxMS41MTEsMCwwLDEtLjEzMi0xLjc3OEExMi4xODMsMTIuMTgzLDAsMCwxLDI0LjUxMSwyOGg3LjA0NEExMi4zLDEyLjMsMCwwLDEsMzEuODg0LDMwLjczM1pNMjgsMjEuNjQ5YTcuNDExLDcuNDExLDAsMCwxLDEuNjc5LDEuNzExLDExLjE3MiwxMS4xNzIsMCwwLDEsMS4yODMsMi4zN0gyNS4xQTguNzQxLDguNzQxLDAsMCwxLDI4LDIxLjY0OVptLTIuMy4yYTEzLjE4MiwxMy4xODIsMCwwLDAtMi4xMDcsMy44ODRIMjAuMTY2QTguOTMsOC45MywwLDAsMSwyNS43LDIxLjg0NlpNMTkuMTEzLDM0YTguNjM1LDguNjM1LDAsMCwxLS40MjgtMS4zNTgsOC4yODgsOC4yODgsMCwwLDEsMC0zLjI5MUE4LjU4NCw4LjU4NCwwLDAsMSwxOS4xMTMsMjhoMy45NWExMi4xODMsMTIuMTgzLDAsMCwwLS4zMjksMi43MzNBMTIuODI1LDEyLjgyNSwwLDAsMCwyMy4xMjgsMzRaTTIyLjgsMzguODYzYTEwLjIyMywxMC4yMjMsMCwwLDEtMi42MzMtMi42aDMuNTU1YTEyLjM1NiwxMi4zNTYsMCwwLDAsMi41NjcsNC4wMTZBOC42NjMsOC42NjMsMCwwLDEsMjIuOCwzOC44NjNaTTI4LDM5Ljg4NGE3LjQ2NCw3LjQ2NCwwLDAsMS0xLjQ4MS0xLjUxNEExMC43NDUsMTAuNzQ1LDAsMCwxLDI1LjMsMzYuMjYzaDUuNDY0QTguMDgxLDguMDgxLDAsMCwxLDI4LDM5Ljg4NFptNS4yNjYtMS4wMjFhOC42NjMsOC42NjMsMCwwLDEtMy40ODksMS40MTYsMTIuNDQsMTIuNDQsMCwwLDAsMi41NjgtNC4wMTZIMzUuOUExMC4yNDMsMTAuMjQzLDAsMCwxLDMzLjI2NiwzOC44NjNaTTM2Ljk1MywzNEgzMi45MzdhOC4yNjksOC4yNjksMCwwLDAsLjI2NC0xLjQ4OXEuMDY1LS44NTUuMDY1LTEuNzc4QTEyLjU5LDEyLjU5LDAsMCwwLDMzLDI4aDMuOTVhOC44LDguOCwwLDAsMSwwLDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-318"},{"key":"SERVICE-12"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CUSTOM_DOMAINS/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"custom-domain-manager","description":"Configure and expose your application under your own domain.","metadata":{"displayName":"Custom Domain Service"},"plans":[{"technicalName":"standard","name":"standard","description":"The service plan standard applies to all usage scenarios of the custom domain service.","metadata":{"bullets":["Creating and managing custom domains."]}}]}}},{"name":"intelligent-situation-automation-app","displayName":"Intelligent Situation Automation","description":"Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"intelligent-situation-automation-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-free-SYSTEM","productDisplayName":"Intelligent Situation Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"For trial purposes only; not to be used in production scenarios","uniqueIdentifier":"intelligent-situation-automation-app","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"For production scenarios","uniqueIdentifier":"intelligent-situation-automation-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"intelligent-situation-automation-app-default-SYSTEM","productDisplayName":"Intelligent Situation Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzcpIj4KPHBhdGggZD0iTTM1Ljc3MjMgMjMuMTE1OUMzNS4zNDg5IDIzLjUzNzQgMzQuODQ2NiAyMy43NDgyIDM0LjI2NTIgMjMuNzQ4MkMzMy43MjEzIDIzLjc0ODIgMzMuMjQyMyAyMy41NDE4IDMyLjgyODMgMjMuMTI5QzMyLjQxNDMgMjIuNzE2MiAzMi4yMDczIDIyLjIyNzMgMzIuMjA3MyAyMS42NjIzQzMyLjIwNzMgMjEuMDk3MiAzMi40MTA0IDIwLjYwMzYgMzIuODE2NyAyMC4xODE1QzMzLjIyMjkgMTkuNzU5MyAzMy43MDg1IDE5LjU0ODIgMzQuMjczNSAxOS41NDgyQzM0Ljg1MjcgMTkuNTQ4MiAzNS4zNTMxIDE5Ljc1OTkgMzUuNzc0OCAyMC4xODMyQzM2LjE5NjQgMjAuNjA2NSAzNi40MDczIDIxLjA5NTggMzYuNDA3MyAyMS42NTA5QzM2LjQwNzMgMjIuMjA1OSAzNi4xOTU2IDIyLjY5NDMgMzUuNzcyMyAyMy4xMTU5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMjY0MSAzNS40MjJMMTQuOTg1OCAzNS40MjE5QzEzLjYxODEgMzUuNDIxOSAxMi40NTMgMzUuODk1OCAxMS40OTA2IDM2Ljg0MzZDMTAuNTI4MSAzNy43OTEzIDEwLjA0NjkgMzguOTgxOCAxMC4wNDY5IDQwLjQxNTFMMTAuMDQ2OSA0OS4xOTk0QzEwLjA0NjkgNDkuNjk2NSAxMC40NDk5IDUwLjA5OTQgMTAuOTQ2OSA1MC4wOTk0TDMxLjUwMzYgNTAuMDk5NEMzMS4zNzI5IDQ5LjY3ODYgMzEuMzA3NCA0OS4yMzk4IDMxLjMwNzQgNDguNzk3NlY0NS43NjM4QzMxLjMwNzQgNDQuNjc1MSAzMS43MDQyIDQzLjYxMDEgMzIuNDg4NyA0Mi43ODQ0QzMyLjMxNTYgNDIuNjA2IDMyLjE1MjQgNDIuNDA2MyAzMi4wMDM5IDQyLjE4MzVMMzEuODIwNSA0MS45MDg1TDMxLjY5MDMgNDEuNjA0N0MzMS40NTQxIDQxLjA1MzUgMzEuMzA3MyA0MC40Mjk3IDMxLjMwNzMgMzkuNzU3NUMzMS4zMDczIDM5LjE4MTUgMzEuNDIxIDM4LjY3ODkgMzEuNTUzMyAzOC4yODJMMzEuNjIwNiAzOC4wODAxTDMxLjcxMTIgMzcuODg3NkMzMi4xMzM4IDM2Ljk4OTcgMzIuNjUyIDM2LjE2NSAzMy4yNjQxIDM1LjQyMloiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBkPSJNNDQuODczNiA0MS41MDUzQzQ0LjU0MjIgNDEuMTczOCA0NC4zOTU1IDQwLjc1MTQgNDQuMzk1NSA0MC4zMTczQzQ0LjM5NTUgMzkuODgzMiA0NC41NDIyIDM5LjQ2MDcgNDQuODczNiAzOS4xMjkzQzQ0LjkzNjUgMzkuMDY2NCA0NS4wMDMxIDM5LjAwODcgNDUuMDczIDM4Ljk1NjVDNDQuODQxOCAzOC43OTIgNDQuNTk4IDM4LjY0NTggNDQuMzQxNCAzOC41MTc1QzQzLjYwNTcgMzguMTQ5NiA0Mi44NDQzIDM3Ljk2OSA0Mi4wNDczIDM3Ljk2OUM0MC45NjIxIDM3Ljk2OSA0MC4wMDcgMzguMjQyMSAzOS4xNTc2IDM4Ljc3OTVDMzguMzE0IDM5LjMxMzIgMzcuNjc2MyA0MC4wMzkgMzcuMjM2NyA0MC45Nzc4QzM3LjEwMzcgNDEuMzA4NiAzNi44NzMxIDQxLjU4NzYgMzYuNTQ4OCA0MS43NzI4TDM2LjUwNTQgNDEuNzk3N0MzNi4yNTE3IDQxLjkyNDUgMzUuOTc5NiA0MS45ODM0IDM1LjcwMzkgNDEuOTgzNEMzNS41ODkyIDQxLjk4MzQgMzUuNDYyNyA0MS45NzY1IDM1LjMzNjEgNDEuOTUzNUMzNS4yNDM1IDQxLjkzNjcgMzUuMTE0OCA0MS45MDUgMzQuOTgwNSA0MS44MzY4QzM0LjcwMDQgNDEuNzE4OSAzNC40MzkyIDQxLjUyODkgMzQuMjUwMyA0MS4yNDU1TDM0LjIwNDUgNDEuMTc2OEwzNC4xNzE5IDQxLjEwMDhDMzQuMDY2OSA0MC44NTU3IDM0LjAwNzIgNDAuNTkyNSAzNC4wMDcyIDQwLjMxNzNDMzQuMDA3MiA0MC4wOTY3IDM0LjA1MSAzOS44ODY3IDM0LjExNDcgMzkuNjk1NkwzNC4xMzcxIDM5LjYyODJMMzQuMTU0MiAzOS41OTdDMzQuODc3IDM4LjA2MDkgMzUuOTM4IDM2LjgzNTcgMzcuMzMyIDM1Ljk0NEMzOC43NDgyIDM1LjAzMDcgNDAuMzI3NyAzNC41NzU1IDQyLjA0NzMgMzQuNTc1NUM0My40MTgzIDM0LjU3NTUgNDQuNzE1OCAzNC44OTY3IDQ1LjkyNzQgMzUuNTM2MUM0Ni41MTMgMzUuODQgNDcuMDU3MyAzNi4xOTkgNDcuNTU5NyAzNi42MTIzQzQ3LjYzNDIgMzYuNDM0IDQ3Ljc0MjEgMzYuMjY2NSA0Ny44ODYyIDM2LjExNzFDNDguMjA1MSAzNS43NjUgNDguNjMxNiAzNS41ODY4IDQ5LjA5NTQgMzUuNTg2OEM0OS41NDkgMzUuNTg2OCA0OS45NjczIDM1Ljc1NzMgNTAuMjg0MSAzNi4wOTQ4QzUwLjYyMTYgMzYuNDExNiA1MC43OTIxIDM2LjgyOTkgNTAuNzkyMSAzNy4yODM1VjQwLjMxNzNDNTAuNzkyMSA0MC43ODExIDUwLjYxMzkgNDEuMjA3NSA1MC4yNjE4IDQxLjUyNjRDNDkuOTMzNSA0MS44NDMyIDQ5LjUxOTggNDEuOTgzNCA0OS4wOTU0IDQxLjk4MzRINDYuMDkyM0M0NS42NTc5IDQxLjk4MzQgNDUuMjUxMSA0MS44MzgxIDQ0LjkxNzQgNDEuNTQ2Mkw0NC45MDk5IDQxLjUzOTZMNDQuODczNiA0MS41MDUzWiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0zOS45MjU4IDQ1LjEzNTZDNDAuMjU3MyA0NS40NjcgNDAuNDAzOSA0NS44ODk1IDQwLjQwMzkgNDYuMzIzNkM0MC40MDM5IDQ2Ljc1NzcgNDAuMjU3MyA0Ny4xODAxIDM5LjkyNTggNDcuNTExNkMzOS44NjI5IDQ3LjU3NDQgMzkuNzk2NCA0Ny42MzIxIDM5LjcyNjQgNDcuNjg0M0MzOS45NTc2IDQ3Ljg0ODggNDAuMjAxNCA0Ny45OTUgNDAuNDU4IDQ4LjEyMzNDNDEuMTkzOCA0OC40OTEyIDQxLjk1NTEgNDguNjcxOCA0Mi43NTIyIDQ4LjY3MThDNDMuODM3MyA0OC42NzE4IDQ0Ljc5MjQgNDguMzk4NyA0NS42NDE5IDQ3Ljg2MTNDNDYuNDg1NCA0Ny4zMjc2IDQ3LjEyMzEgNDYuNjAxOCA0Ny41NjI4IDQ1LjY2MzFDNDcuNjk1NyA0NS4zMzIyIDQ3LjkyNjQgNDUuMDUzMyA0OC4yNTA2IDQ0Ljg2OEw0OC4yOTQgNDQuODQzMkM0OC41NDc4IDQ0LjcxNjMgNDguODE5OSA0NC42NTc1IDQ5LjA5NTUgNDQuNjU3NUM0OS4yMTAzIDQ0LjY1NzUgNDkuMzM2OCA0NC42NjQzIDQ5LjQ2MzQgNDQuNjg3M0M0OS41NTYgNDQuNzA0MiA0OS42ODQ2IDQ0LjczNTkgNDkuODE4OSA0NC44MDRDNTAuMDk5MSA0NC45MjE5IDUwLjM2MDMgNDUuMTEyIDUwLjU0OTIgNDUuMzk1M0w1MC41OTUgNDUuNDY0MUw1MC42Mjc2IDQ1LjU0QzUwLjczMjYgNDUuNzg1MSA1MC43OTIzIDQ2LjA0ODMgNTAuNzkyMyA0Ni4zMjM2QzUwLjc5MjMgNDYuNTQ0MiA1MC43NDg1IDQ2Ljc1NDEgNTAuNjg0OCA0Ni45NDUzTDUwLjY2MjMgNDcuMDEyN0w1MC42NDUzIDQ3LjA0MzlDNDkuOTIyNCA0OC41Nzk5IDQ4Ljg2MTUgNDkuODA1MiA0Ny40Njc0IDUwLjY5NjhDNDYuMDUxMiA1MS42MTAxIDQ0LjQ3MTggNTIuMDY1MyA0Mi43NTIyIDUyLjA2NTNDNDEuMzgxMiA1Mi4wNjUzIDQwLjA4MzYgNTEuNzQ0MiAzOC44NzIxIDUxLjEwNDdDMzguMjg2NSA1MC44MDA4IDM3Ljc0MjIgNTAuNDQxOCAzNy4yMzk4IDUwLjAyODVDMzcuMTY1MiA1MC4yMDY5IDM3LjA1NzQgNTAuMzc0MyAzNi45MTMyIDUwLjUyMzdDMzYuNTk0NCA1MC44NzU4IDM2LjE2NzkgNTEuMDU0MSAzNS43MDQxIDUxLjA1NDFDMzUuMjUwNCA1MS4wNTQxIDM0LjgzMjIgNTAuODgzNiAzNC41MTU0IDUwLjU0NkMzNC4xNzc4IDUwLjIyOTIgMzQuMDA3MyA0OS44MTA5IDM0LjAwNzMgNDkuMzU3M0wzNC4wMDczIDQ2LjMyMzZDMzQuMDA3MyA0NS44NTk3IDM0LjE4NTYgNDUuNDMzMyAzNC41Mzc2IDQ1LjExNDRDMzQuODY2IDQ0Ljc5NzcgMzUuMjc5NiA0NC42NTc1IDM1LjcwNDEgNDQuNjU3NUwzOC43MDcyIDQ0LjY1NzVDMzkuMTQxNSA0NC42NTc1IDM5LjU0ODQgNDQuODAyNyAzOS44ODIxIDQ1LjA5NDdMMzkuODg5NiA0NS4xMDEyTDM5LjkyNTggNDUuMTM1NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI0LjM3MDkgMTIuMDEzMlY3Ljk5MzJDMjQuMzcwOSA2Ljc0NTY4IDIzLjM1OTYgNS43MzQzNyAyMi4xMTIxIDUuNzM0MzhDMjAuODY0NiA1LjczNDM4IDE5Ljg1MzMgNi43NDU2OCAxOS44NTMzIDcuOTkzMkwxOS44NTMzIDEyLjAxMzJIMjQuMzcwOVpNMzYuMTQ2NyAxMi4wMTMyVjcuOTkzMkMzNi4xNDY3IDYuNzQ1NjggMzUuMTM1NCA1LjczNDM3IDMzLjg4NzkgNS43MzQzOEMzMi42NDA0IDUuNzM0MzggMzEuNjI5MSA2Ljc0NTY4IDMxLjYyOTEgNy45OTMyTDMxLjYyOTEgMTIuMDEzMkgzNi4xNDY3WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzMxNCAxNy41MDQzTDM5LjMzMTMgMTcuNTA0M0MzOC4wMzg0IDE2LjI1MTQgMzYuNjIwMyAxNS42Nzc0IDM0LjgyNDMgMTUuNjc3NEgyMS4xMzIzQzE5LjQwMTQgMTUuNjc3NCAxNy45OTUxIDE2LjIzODQgMTYuNjc5NSAxNy41MTQ3QzE1LjM3NjMgMTguNzc4OCAxNC44NDY5IDIwLjA4NjIgMTQuODQ2OSAyMS42NzFDMTQuODQ2OSAyMy4yNTQ1IDE1LjM3NDkgMjQuNTQ3OSAxNi42NjcxIDI1Ljc5MjZDMTcuOTgwNCAyNy4wNTc1IDE5LjM5MDUgMjcuNjE5IDIxLjEzMjMgMjcuNjE5SDM0LjgyNDNDMzYuNjI2NiAyNy42MTkgMzguMDQ3IDI3LjA0NDcgMzkuMzM4NSAyNS43OTg0QzQwLjYyMTEgMjQuNTYwNyA0MS4xNTMxIDIzLjI2NDEgNDEuMTUzMSAyMS42NjE0QzQxLjE1MzEgMjAuMDU4MSA0MC42MjAzIDE4Ljc1MzMgMzkuMzMxNCAxNy41MDQzWk0xMy4zMzcyIDI5LjI0OTdDMTUuNTMwOCAzMS4zNjI1IDE4LjEyOTEgMzIuNDE5IDIxLjEzMjMgMzIuNDE5SDM0LjgyNDNDMzcuODY4MiAzMi40MTkgNDAuNDg0IDMxLjM2MzQgNDIuNjcxNiAyOS4yNTI0QzQ0Ljg1OTMgMjcuMTQxNCA0NS45NTMxIDI0LjYxMTEgNDUuOTUzMSAyMS42NjE0QzQ1Ljk1MzEgMTguNzExOCA0NC44NTkzIDE2LjE3NzEgNDIuNjcxNiAxNC4wNTcyQzQwLjQ4NCAxMS45Mzc0IDM3Ljg2ODIgMTAuODc3NCAzNC44MjQzIDEwLjg3NzRIMjEuMTMyM0MxOC4xMjkxIDEwLjg3NzQgMTUuNTMwOCAxMS45NDE0IDEzLjMzNzIgMTQuMDY5NUMxMS4xNDM3IDE2LjE5NzUgMTAuMDQ2OSAxOC43MzEzIDEwLjA0NjkgMjEuNjcxQzEwLjA0NjkgMjQuNjEwNiAxMS4xNDM3IDI3LjEzNjkgMTMuMzM3MiAyOS4yNDk3WiIgZmlsbD0idXJsKCNwYWludDVfcmFkaWFsXzIwMDNfMjkxMzcpIi8+CjxwYXRoIGQ9Ik0yMi41NjUgMjMuMTE1OUMyMi4xNDE3IDIzLjUzNzQgMjEuNjM5MyAyMy43NDgyIDIxLjA1NzkgMjMuNzQ4MkMyMC41MTQgMjMuNzQ4MiAyMC4wMzUgMjMuNTQxOCAxOS42MjEgMjMuMTI5QzE5LjIwNyAyMi43MTYyIDE5IDIyLjIyNzMgMTkgMjEuNjYyM0MxOSAyMS4wOTcyIDE5LjIwMzEgMjAuNjAzNiAxOS42MDk0IDIwLjE4MTVDMjAuMDE1NiAxOS43NTkzIDIwLjUwMTIgMTkuNTQ4MiAyMS4wNjYyIDE5LjU0ODJDMjEuNjQ1NCAxOS41NDgyIDIyLjE0NTggMTkuNzU5OSAyMi41Njc1IDIwLjE4MzJDMjIuOTg5MiAyMC42MDY1IDIzLjIgMjEuMDk1OCAyMy4yIDIxLjY1MDlDMjMuMiAyMi4yMDU5IDIyLjk4ODMgMjIuNjk0MyAyMi41NjUgMjMuMTE1OVoiIGZpbGw9InVybCgjcGFpbnQ2X3JhZGlhbF8yMDAzXzI5MTM3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMi44NTc2IDIwLjE4KSByb3RhdGUoNDQuOTk5OSkgc2NhbGUoNC4xMzc0MyAzLjc3MDI4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjY0NzMgMzcuNTc3KSByb3RhdGUoMzIuNTg4Mykgc2NhbGUoMTkuMDc3OSAzMi43MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDM2LjY3ODUgMzcuMjAwNCkgcm90YXRlKDQ2LjE3OCkgc2NhbGUoMTYuOTc2MiAyMC41ODU1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQ0X3JhZGlhbF8yMDAzXzI5MTM3IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDIyLjM3NjMgNi42Nzg5Mykgcm90YXRlKDIxLjA3NDgpIHNjYWxlKDEyLjE2MzEgNy40Mzc5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50NV9yYWRpYWxfMjAwM18yOTEzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxNS43NjEyIDE0LjExMDQpIHJvdGF0ZSgzMC45NjEyKSBzY2FsZSgyOS4zMjM0IDMxLjM5OTcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDZfcmFkaWFsXzIwMDNfMjkxMzciIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuNjUwNCAyMC4xOCkgcm90YXRlKDQ0Ljk5OTkpIHNjYWxlKDQuMTM3NDMgMy43NzAyOCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMzciPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-721"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/INTELLIGENT_SITUATION_AUT/1.0/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/intelligent-situation-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"intelligent-situation-automation-app","plans":[{"technicalName":"beta","name":"beta","description":"For trial purposes only; not to be used in production scenarios","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"For exploring features in testing environment only; do not use in production scenarios. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["1 Automation Configuration","300 Situation Automations","500 Situation Instances to Monitor"]}},{"technicalName":"standard","name":"standard","description":"For production scenarios","metadata":{"bullets":[]}}]}}},{"name":"kymaruntime","displayName":"Kyma Runtime","description":"SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"aws","displayName":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-aws","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-aws-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime AWS","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcp","displayName":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-gcp","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-gcp-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime GCP","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure","displayName":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","uniqueIdentifier":"kymaruntime-azure","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":1,"category":"ENVIRONMENT","sourceEntitlements":[{"entitlementName":"kymaruntime-azure-SYSTEM","productDisplayName":"Kyma Runtime - Kyma Runtime Azure","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ia3ltYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS41ODksMjYuNDc4LDQxLjExMyw4LjQ5MmEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNC0xLjVIMjguMDEydjNIMzguNWwuMDIuMDExTDQ5LDI4LjAxMmwtMTAuNSwxOEwyOC4wMTIsNDZ2My4wMDdIMzguNWEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNC0xLjVMNTEuNTg5LDI5LjUyMkEzLjAyNCwzLjAyNCwwLDAsMCw1MS41ODksMjYuNDc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1Ljk4LDMxLjY2M2E0LjMzLDQuMzMsMCwwLDEsMS45NjItLjQ2N0gxOS44OGExMS4yNTUsMTEuMjU1LDAsMCwwLDcuMTY4LTIuMzVjLS41MjMtLjQ2NS0xLjAzMi0uOTM5LTEuNTIyLTEuNDA5LTIuNDc1LTIuMzUzLTUuMDU0LTQuNTc1LTkuNTQ2LTQuNzcxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE5Ljg2LDMyLjY1MUgxNy45NDJhMS45NzEsMS45NzEsMCwwLDAtMS45MzcsMS45Mzh2Mi40NjNIMzkuOTkyTDM5Ljk4MSwyMi43NGMtNC40MjguMjE5LTYuNzQyLDIuNDIyLTkuMTk0LDQuNzQ3QzI4LjExMSwzMC4wMjUsMjUuMzQzLDMyLjY1MSwxOS44NiwzMi42NTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuMzI2LDE3LjkzdjMuODc1YTEyLjk3LDEyLjk3LDAsMCwxLDQuNzM2LDIuNTMyLDEyLjIwNiwxMi4yMDYsMCwwLDAsMy40NDgtMi40OTNDMjUuNDY1LDE5Ljg4NywyMy40MTQsMTcuOTMsMTkuMzI2LDE3LjkzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2LjQxNywyNi40OTNjLjUzMS41MTIsMS4wODUsMS4wMywxLjY2LDEuNTIyLjU4NC0uNSwxLjE0OS0xLjAzNSwxLjcxOS0xLjU3N2ExOC4xNDksMTguMTQ5LDAsMCwxLDYuMjE2LTQuMzU2TDM2LDE4LjYwNWMtMy4zOS4yLTUuMiwxLjkxMy03LjA5MSwzLjczNEExNi43MjksMTYuNzI5LDAsMCwxLDI1LjEzNSwyNS4zQzI1LjU3LDI1LjY5MSwyNiwyNi4wOTIsMjYuNDE3LDI2LjQ5M1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjAwNSwyNy45ODhsMTAuNS0xOEgyOC4wMTJ2LTNIMTcuNWEzLjAyNCwzLjAyNCwwLDAsMC0yLjYxNCwxLjVMNC40MTEsMjYuNDc4YTMuMDI0LDMuMDI0LDAsMCwwLDAsMy4wNDRMMTQuODg3LDQ3LjUwOGEzLjAyNCwzLjAyNCwwLDAsMCwyLjYxNCwxLjVIMjguMDEyVjQ2TDE3LjQ4MSw0NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/3504ec5ef16548778610c7e89cc0eac3/Cloud/en-US/468c2f3c3ca24c2c8497ef9f83154c44.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/kyma-runtime"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"kymaruntime","plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"aws","name":"aws","description":"Select Amazon Web Services as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: m5.xlarge","Region: eu-central-1","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"gcp","name":"gcp","description":"Select Google Cloud as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type: n2-standard-4","Region:europe-west3","Auto Scaler Min: 3","Auto Scaler Max: 20"]}},{"technicalName":"azure","name":"azure","description":"Select Microsoft Azure as the cloud provider where your Kyma cluster is deployed.","metadata":{"bullets":["Machine Type:Standard_D4_v3","Region: eastus","Auto Scaler Min: 3","Auto Scaler Max: 20"]}}]}}},{"name":"IRPA","displayName":"SAP Intelligent Robotic Process Automation","description":"SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"IRPA-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-free-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"concurrent","displayName":"Concurrent","description":"Design, configure, and execute automation projects","uniqueIdentifier":"IRPA-concurrent","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"IRPA-concurrent-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - concurrent","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","uniqueIdentifier":"INTERNAL_IRPA-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"INTERNAL_IRPA-default-SYSTEM","productDisplayName":"SAP Intelligent Robotic Process Automation - SAP Intelligent Robotic Process Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWludGVsbGlnZW50LXJvYm90aWMtcHJvY2Vzcy1hdXRvbWF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaW50ZWxsaWdlbnQtcm9ib3RpYy1wcm9jZXNzLWF1dG9tYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI4LDE1Ljk2MWM5LjkyNSwwLDE4LDcuNDEsMTgsMTYuNTE4UzM3LjkyNSw0OSwyOCw0OXMtMTgtNy40MS0xOC0xNi41MTgsOC4wNzUtMTYuNTE4LDE4LTE2LjUxOG0wLTNjLTExLjYsMC0yMSw4Ljc0LTIxLDE5LjUyMlMxNi40LDUyLDI4LDUyczIxLTguNzQsMjEtMTkuNTIxUzM5LjYsMTIuOTU3LDI4LDEyLjk1N1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zNC44MSwyMy4zOTJIMjEuMTM3YTguMTcyLDguMTcyLDAsMCwwLDAsMTYuMzQ0SDM0LjgxYTguMTcyLDguMTcyLDAsMCwwLDAtMTYuMzQ0Wm0wLDEzLjM0MUgyMS4xMzdhNS4xNjksNS4xNjksMCwwLDEsMC0xMC4zMzhIMzQuODFhNS4xNjksNS4xNjksMCwwLDEsMCwxMC4zMzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjIuMTk0LDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDIyLjE5NCwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzMuODQxLDI4Ljc5MWEyLjU0NywyLjU0NywwLDEsMCwyLjU1LDIuNTQ3QTIuNTQ4LDIuNTQ4LDAsMCwwLDMzLjg0MSwyOC43OTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjcuMjE4LDkuODQ4djMuMTQ2Yy4yNjEtLjAwOS41MTgtLjAzNy43ODItLjAzNy4yNDIsMCwuNDc3LjAyNy43MTguMDM0VjkuODYxQTIuOTYsMi45NiwwLDAsMCwzMSw3YTMsMywwLDEsMC02LDBBMi45NjEsMi45NjEsMCwwLDAsMjcuMjE4LDkuODQ4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IRPA"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"IRPA","description":"Design, configure, and execute automation projects.","metadata":{"displayName":"SAP Intelligent Robotic Process Automation"},"plans":[{"technicalName":"free","name":"Free","description":"Design, configure, and execute automation projects (free edition). Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}},{"technicalName":"concurrent-attended","name":"concurrent-attended","description":"Number of concurrent attended runs (in blocks of 10)","metadata":{}},{"technicalName":"concurrent-unattended","name":"concurrent-unattended","description":"Number of concurrent unattended runs (in blocks of 1)","metadata":{}},{"technicalName":"concurrent","name":"Concurrent","description":"Design, configure, and execute automation projects","metadata":{"bullets":[]}},{"technicalName":"default","name":"Default","description":"Design, configure, and execute automation projects (pay per transaction)","metadata":{"bullets":[]}}]}}},{"name":"one-inbox-service","displayName":"SAP Task Center","description":"The SAP Task Center service only enables, but does not include the integration implementation from the supported SAP solutions. The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned workflow tasks. The tasks can be accessed by end users through the SAP Task Center Web application.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Default plan for using the SAP Task Center","uniqueIdentifier":"one-inbox-service-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-inbox-service-standard-SYSTEM","productDisplayName":"One Inbox Service - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["For features and restrictions see our documentation"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTN7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbC1ydWxlOmV2ZW5vZGQ7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJ0YXNrLWNlbnRlciI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDcuNzQ0LDM1Ljg0MmE3LjUxNSw3LjUxNSwwLDAsMS0yLS4yN0ExOS40MzQsMTkuNDM0LDAsMCwxLDM0Ljg4LDQ2LjFhNy41NTQsNy41NTQsMCwwLDEsLjYzNiwyLjNBMjEuODE2LDIxLjgxNiwwLDAsMCw0OC4yLDM1LjgyN0M0OC4wNDUsMzUuODM2LDQ3LjksMzUuODQyLDQ3Ljc0NCwzNS44NDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC4wMiwyMC42MzRhNy41NTIsNy41NTIsMCwwLDEsMi4wMzUuMjhBMTkuNDMzLDE5LjQzMywwLDAsMSwyMS4xNjgsOS44ODYsNy41OTQsNy41OTQsMCwwLDEsMjAuNSw3LjYsMjEuODEsMjEuODEsMCwwLDAsNy42MzEsMjAuNjQ0QzcuNzYsMjAuNjM3LDcuODg5LDIwLjYzNCw4LjAyLDIwLjYzNFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNC44MzEsOS44ODZBMTkuNDMzLDE5LjQzMywwLDAsMSw0NS45MiwyMC44NThhNy41MTIsNy41MTIsMCwwLDEsMS44MjQtLjIyNGMuMjEyLDAsLjQyMi4wMTEuNjMuMDI4QTIxLjgxMiwyMS44MTIsMCwwLDAsMzUuNSw3LjYsNy41NTMsNy41NTMsMCwwLDEsMzQuODMxLDkuODg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIxLjEyLDQ2LjFBMTkuNDMyLDE5LjQzMiwwLDAsMSwxMC4yMjYsMzUuNTEyYTcuNTE2LDcuNTE2LDAsMCwxLTIuMjA2LjMzYy0uMDcyLDAtLjE0MiwwLS4yMTMtLjAwNkEyMS44MTEsMjEuODExLDAsMCwwLDIwLjQ4NCw0OC40LDcuNTU0LDcuNTU0LDAsMCwxLDIxLjEyLDQ2LjFaIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iMjgiIGN5PSI3LjgwMiIgcng9IjMuNzgzIiByeT0iMy44MDIiLz48ZWxsaXBzZSBjbGFzcz0iY2xzLTIiIGN4PSIyOC4xMTgiIGN5PSI0OC4xOTgiIHJ4PSIzLjc4MyIgcnk9IjMuODAyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy0yIiBjeD0iNDguMjE3IiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxlbGxpcHNlIGNsYXNzPSJjbHMtMiIgY3g9IjcuNzgzIiBjeT0iMjguMjM4IiByeD0iMy43ODMiIHJ5PSIzLjgwMiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNS4yMjcgMjAuMDQgMjUuNzQxIDMwLjA1MiAyMS4zNjUgMjYuMDM3IDE4LjE4NyAyOS41MyAyNS45NzIgMzYuNjczIDM4LjY0IDIzLjMwMiAzNS4yMjcgMjAuMDQiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-457"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/TASK_CENTER/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/08cbda59b4954e93abb2ec85f1db399d/Cloud/en-US/9693186f1fe54cbe801085d6bdfe8287.html"},{"title":"View APIs","type":"ext","propagateTheme":"false","descriptionCategory":"documentation","ext":{"externalLinkURL":"https://cloudintegration.int.sap.eu2.hana.ondemand.com/package/SAPTaskCenterInternal"}}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"one-inbox-service","description":"Integrate all tasks into a central solution.","metadata":{"displayName":"SAP Task Center"},"plans":[{"technicalName":"standard","name":"standard","description":"Default plan for using the SAP Task Center","metadata":{"bullets":["For features and restrictions see our documentation"]}}]}}},{"name":"ads-configui","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Configure Adobe Document Services. Access the template store UI.","uniqueIdentifier":"ads-configui-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"ads-configui-default-SYSTEM","productDisplayName":"SAP Forms Service by Adobe - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/661c02ef20d54bfeb309d42608baeaca.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads-configui","plans":[{"technicalName":"default","name":"Default","description":"Configure Adobe Document Services. Access the template store UI.","metadata":{"bullets":[]}}]}}},{"name":"auditlog","displayName":"auditlog","description":"Audit Log Service in CF","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","description":"STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":0.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-standard-SYSTEM","productDisplayName":"Audit Log - STANDARD plan for the audit log service usage. Basic authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","description":"OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","uniqueIdentifier":"auditlog-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"auditlog-oauth2-SYSTEM","productDisplayName":"Audit Log - OAUTH2 plan for the audit log service usage. OAuth2 authentication is used for creating audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cbc-poc","displayName":"Central Business Configuration (PoC)","description":"Central Business Configuration is a central service to scope and to configure the intelligent enterprise end-to-end","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"authoring","displayName":"authoring","description":"Author and publish business configuration packages","uniqueIdentifier":"cbc-poc-authing","provisioningMethod":"SERVICE_BROKER","amount":100,"remainingAmount":100.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cicd-app","displayName":"Continuous Integration & Delivery","description":"SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"cicd-app-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"QUOTA_BASED_APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-free-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 2 Jobs","Sequential build runs"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","uniqueIdentifier":"cicd-app-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"cicd-app-default-SYSTEM","productDisplayName":"Continuous Integration & Delivery [SaaS] - Default Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Configuration of up to 200 Jobs","Up to 20 parallel builds"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMTlfMjYyNDYpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIwMTlfMjYyNDYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNy45Nzk5IDIzLjkzMjNDMzcuNzYxNCAyMC4zMTgzIDM1Ljg2NjYgMTYuNzE3IDMxLjczMDkgMTUuNDQ0MkMzMC40MTM5IDE1LjEzNCAyOS41OTc4IDEzLjgxNSAyOS45MDggMTIuNDk4QzMwLjIxODIgMTEuMTgxMSAzMS41MzczIDEwLjM2NDkgMzIuODU0MiAxMC42NzUxQzM2Ljc4MyAxMC45MTU5IDQyLjgzNDMgMTYuMzM2MSA0NC44MDM3IDIzLjA3NTdDNDUuMDkzIDIzLjE3MjUgNDUuMzc5NyAyMy4yODY5IDQ1LjY2MjYgMjMuNDE5M0M0OS42NDQ5IDI1LjI4MzggNTEuMzYxOSAzMC4wMjM2IDQ5LjQ5NzQgMzQuMDA2QzQ3LjYzMjkgMzcuOTg4MyA0Mi44OTMxIDM5LjcwNTMgMzguOTEwNyAzNy44NDA4QzM0LjkyODQgMzUuOTc2MyAzMy4yMTE1IDMxLjIzNjUgMzUuMDc1OSAyNy4yNTQxQzM1LjczNjcgMjUuODQyOCAzNi43NTg2IDI0LjcxNiAzNy45Nzk5IDIzLjkzMjNaTTQwLjk4ODIgMzMuNDAzNEM0Mi41MTk5IDM0LjEyMDUgNDQuMzQyOSAzMy40NjAyIDQ1LjA2IDMxLjkyODVDNDUuNzc3MSAzMC4zOTY4IDQ1LjExNjggMjguNTczOCA0My41ODUxIDI3Ljg1NjdDNDIuMDUzNCAyNy4xMzk2IDQwLjIzMDQgMjcuNzk5OSAzOS41MTMzIDI5LjMzMTZDMzguNzk2MiAzMC44NjMzIDM5LjQ1NjUgMzIuNjg2MyA0MC45ODgyIDMzLjQwMzRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNS42MDcyIDQyLjgzMThDMjguODI5IDQ0LjQ4MzYgMzIuODkzMSA0NC42ODYzIDM2LjA5NDIgNDEuNzc0OEMzNy4wMzE3IDQwLjc5OTMgMzguNTgyNiA0MC43Njg1IDM5LjU1ODEgNDEuNzA2QzQwLjUzMzcgNDIuNjQzNSA0MC41NjQ1IDQ0LjE5NDMgMzkuNjI3IDQ1LjE2OThDMzcuNDE5NSA0OC40Mjg3IDI5LjY3MzUgNTAuODc3MyAyMi44NzAxIDQ5LjE0MUMyMi42Mzk2IDQ5LjM0MDYgMjIuMzk1MiA0OS41MjkyIDIyLjEzNzIgNDkuNzA1MkMxOC41MDQ5IDUyLjE4MzUgMTMuNTUxMyA1MS4yNDggMTEuMDczIDQ3LjYxNTdDOC41OTQ2OSA0My45ODM0IDkuNTMwMTggMzkuMDI5OCAxMy4xNjI1IDM2LjU1MTVDMTYuNzk0OCAzNC4wNzMyIDIxLjc0ODQgMzUuMDA4NyAyNC4yMjY3IDM4LjY0MUMyNS4xMDUgMzkuOTI4MyAyNS41NTQ2IDQxLjM4MTUgMjUuNjA3MiA0Mi44MzE4Wk0xNS45MjM5IDQwLjU5ODhDMTQuNTI2OSA0MS41NTIgMTQuMTY3MSA0My40NTcyIDE1LjEyMDMgNDQuODU0MkMxNi4wNzM1IDQ2LjI1MTMgMTcuOTc4NyA0Ni42MTExIDE5LjM3NTggNDUuNjU3OUMyMC43NzI4IDQ0LjcwNDcgMjEuMTMyNiA0Mi43OTk1IDIwLjE3OTQgNDEuNDAyNEMxOS4yMjYyIDQwLjAwNTQgMTcuMzIxIDM5LjY0NTYgMTUuOTIzOSA0MC41OTg4WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMTlfMjYyNDYpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMjMzMSAyMS45NzYyQzEyLjI3OTkgMjQuMDcwOCAxMC4yMjI5IDI3LjU4MTkgMTEuMzI2OCAzMS43NjU5QzExLjc1OTEgMzMuMDQ4IDExLjA3MDIgMzQuNDM3OCA5Ljc4ODA5IDM0Ljg3QzguNTA2IDM1LjMwMjMgNy4xMTYyNSAzNC42MTM0IDYuNjgzOTggMzMuMzMxM0M0LjgxMzA5IDI5Ljg2ODMgNi4yMTg4NSAyMS44NjcgMTAuOTAxMSAxNi42MzQ2QzEwLjgzMDUgMTYuMzM3OSAxMC43NzYxIDE2LjAzNCAxMC43MzkxIDE1LjcyMzhDMTAuMjE4NiAxMS4zNTc1IDEzLjMzNjIgNy4zOTU5MSAxNy43MDI1IDYuODc1MzlDMjIuMDY4OCA2LjM1NDg2IDI2LjAzMDQgOS40NzI0OSAyNi41NTA5IDEzLjgzODhDMjcuMDcxNSAxOC4yMDUxIDIzLjk1MzggMjIuMTY2NyAxOS41ODc1IDIyLjY4NzJDMTguMDQwMiAyMi44NzE2IDE2LjU0MzcgMjIuNTk5MiAxNS4yMzMxIDIxLjk3NjJaTTIxLjY4NTggMTQuNDE4OEMyMS40ODU2IDEyLjczOTQgMTkuOTYxOSAxMS41NDA0IDE4LjI4MjUgMTEuNzQwNkMxNi42MDMyIDExLjk0MDggMTUuNDA0MSAxMy40NjQ0IDE1LjYwNDMgMTUuMTQzOEMxNS44MDQ1IDE2LjgyMzEgMTcuMzI4MiAxOC4wMjIyIDE5LjAwNzUgMTcuODIyQzIwLjY4NjkgMTcuNjIxOCAyMS44ODYgMTYuMDk4MSAyMS42ODU4IDE0LjQxODhaIiBmaWxsPSJ1cmwoI3BhaW50Ml9yYWRpYWxfMjAxOV8yNjI0NikiLz4KPC9nPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAxOV8yNjI0NiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSg0OS44MjkxIDI2LjkwNTMpIHJvdGF0ZSgtMTcxLjMwNSkgc2NhbGUoMjQuMzU3MSAyNi42MTc4KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjkyMSA1MS42MTE2KSByb3RhdGUoLTUwLjk4Nikgc2NhbGUoMjQuMTU2NSA0MS4yOTczKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMTk1RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTE0N0U5Ii8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQyX3JhZGlhbF8yMDE5XzI2MjQ2IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUyNDMgMTAuMjIwNSkgcm90YXRlKDY2LjgwODYpIHNjYWxlKDI0LjIyNzMgMTkuODc5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIvPgo8L2NsaXBQYXRoPgo8Y2xpcFBhdGggaWQ9ImNsaXAxXzIwMTlfMjYyNDYiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHJ4PSIxMC42ODc1IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MiA0Ljk5MzcxKSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-492"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY?version=Cloud"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CONTINUOUS_DELIVERY/99c72101f7ee40d0b2deb4df72ba1ad3/6e10ad426e434180a0c62d4e7b6115bc.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/continuous-integration--delivery?region=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}],"CFService":{"name":"cicd-app","plans":[{"technicalName":"trial","name":"Trial","description":"Try out SAP Continuous Integration and Delivery free of charge.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"free","name":"Free","description":"Try out SAP Continuous Integration and Delivery free of charge. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":["Configuration of up to 2 Jobs","Sequential build runs"]}},{"technicalName":"default","name":"Default","description":"Make full use of SAP Continuous Integration and Delivery.","metadata":{"bullets":["Configuration of up to 200 Jobs","Up to 20 parallel builds"]}}]}}},{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"dashboard","displayName":"dashboard","description":"View and manage Feature Flags Service instances.","uniqueIdentifier":"feature-flags-dashboard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}}},{"name":"auditlog-viewer","displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"free plan","uniqueIdentifier":"internal-auditlogviewer-free","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"default plan","uniqueIdentifier":"internal-auditlogviewer-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-auditlogviewer-default-SYSTEM","productDisplayName":"Audit Log Viewer - SAP Cloud Platform Audit Log Viewer helps you to view and manage audit logs.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"default","name":"default","description":"default plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}}},{"name":"content-agent","displayName":"SAP Content Agent Service","description":"Cloud Foundry based utility service that like an agent for content operations like assembly, export and import","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Application plan for generic content management APIs","uniqueIdentifier":"content-agent-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan for content assembly and export","uniqueIdentifier":"content-agent-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print-app","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Allows you to manage print queue and monitor the print status","uniqueIdentifier":"internal-print-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-print-app-SYSTEM","productDisplayName":"Print - Print","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"abap-solution","displayName":"ABAP Solution","description":"Create an ABAP Environment based SaaS Solution ","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan","uniqueIdentifier":"abap-solution-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"abap-solution-standard-SYSTEM","productDisplayName":"ABAP Solution (Beta) - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-222"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/195031ff8f484b51af16fe392ec2ae6e.html"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"abap-solution","description":"Create an ABAP Environment based SaaS Solution","metadata":{"displayName":"ABAP Solution"},"plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud-tools","displayName":"SAP HANA Cloud","description":"A single gateway to all your data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tools","displayName":"SAP HANA Cloud Tools","description":"SAP HANA Cloud Tools. This is a required service for provisioning or managing instances using the SAP HANA Cloud graphical tools.","uniqueIdentifier":"hana-cloud-tools-tools","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"hana-cloud-tools-tools-SYSTEM","productDisplayName":"SAP HANA Cloud - SAP HANA Cloud Tools","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"credstore","displayName":"Credential Store","description":"The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"credstore-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-free-SYSTEM","productDisplayName":"Credential Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard plan","uniqueIdentifier":"credstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"credstore-standard-SYSTEM","productDisplayName":"Credential Store - Credential Store service - standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["100 000 credentials"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY3JlZGVudGlhbC1zdG9yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y3JlZGVudGlhbC1zdG9yZTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDkuMDA4LDM0SDE4Ljk5MkEyLjk5MywyLjk5MywwLDAsMCwxNiwzNi45OTJWNDkuMDA4QTIuOTkzLDIuOTkzLDAsMCwwLDE4Ljk5Miw1Mkg0OS4wMDhBMi45OTMsMi45OTMsMCwwLDAsNTIsNDkuMDA4VjM2Ljk5MkEyLjk5MywyLjk5MywwLDAsMCw0OS4wMDgsMzRaTTE5LDQ5LjAwOCwxOC45OTIsMzdINDlsLjAwOCwxMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy45LDQxLjE3NmEuNzUuNzUsMCwwLDAtMS4wMzEtLjI0N2wtMS4xMTIuNjgzVjQwLjQ0OGEuNzUuNzUsMCwwLDAtMS41LDB2MS4xNjRsLTEuMTEyLS42ODNhLjc1Ljc1LDAsMCwwLS43ODUsMS4yNzhsMS4yMTUuNzQ1LTEuMjE1Ljc0NmEuNzUuNzUsMCwwLDAsLjM5MywxLjM4OS43MzEuNzMxLDAsMCwwLC4zOTItLjExMmwxLjExMi0uNjgydjEuMjU5YS43NS43NSwwLDAsMCwxLjUsMFY0NC4yOTNsMS4xMTIuNjgyYS43MzQuNzM0LDAsMCwwLC4zOTMuMTEyLjc1Ljc1LDAsMCwwLC4zOTItMS4zODlsLTEuMjE0LS43NDYsMS4yMTQtLjc0NUEuNzQ5Ljc0OSwwLDAsMCwyNy45LDQxLjE3NloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zNi44OTMsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDUtMS4yMTQuNzQ2YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDM2Ljg5Myw0MS4xNzZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuOTQsNDEuMTc2YS43NS43NSwwLDAsMC0xLjAzMS0uMjQ3bC0xLjExMi42ODNWNDAuNDQ4YS43NS43NSwwLDAsMC0xLjUsMHYxLjE2NGwtMS4xMTItLjY4M2EuNzUuNzUsMCwwLDAtLjc4NSwxLjI3OGwxLjIxNC43NDVMNDAuNCw0My43YS43NS43NSwwLDAsMCwuMzkzLDEuMzg5LjczMy43MzMsMCwwLDAsLjM5Mi0uMTEybDEuMTEyLS42ODJ2MS4yNTlhLjc1Ljc1LDAsMCwwLDEuNSwwVjQ0LjI5M2wxLjExMi42ODJhLjczMy43MzMsMCwwLDAsLjM5Mi4xMTIuNzUuNzUsMCwwLDAsLjM5My0xLjM4OWwtMS4yMTQtLjc0NiwxLjIxNC0uNzQ1QS43NDkuNzQ5LDAsMCwwLDQ1Ljk0LDQxLjE3NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjM1LjA0MyIgY3k9IjE3LjUiIHI9IjMiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Ny44NTQsMTIuN2ExNC44ODQsMTQuODg0LDAsMCwwLTcuNTgtNy41NThBMTMuMDM4LDEzLjAzOCwwLDAsMCwzNC45LDRhMTMuMjU0LDEzLjI1NCwwLDAsMC01LjQ2NSwxLjE0MywxNC41NTEsMTQuNTUxLDAsMCwwLTcuNDkyLDcuNDcsMTMuMTU0LDEzLjE1NCwwLDAsMC0xLjE0Niw1LjQ0OSw4LjQzOCw4LjQzOCwwLDAsMCwuNCwyLjY4MWMuMjY1Ljc5MS42MjgsMS41NTEuODYzLDIuMDc4TDUuNTQ1LDM5Ljg1OUE1Ljg2Nyw1Ljg2NywwLDAsMCw0LDQzLjQxYTUuMzEsNS4zMSwwLDAsMCwuMzU1LDIuMzgyLDguNTY0LDguNTY0LDAsMCwwLC45MjUsMS40NSw0LjQ2Myw0LjQ2MywwLDAsMCwyLjQxMiwxLjU0M0E0LjUxNiw0LjUxNiwwLDAsMCw5LjUxMSw0OUgxM1Y0Nkg5LjYxOGwtLjUzMi0uMDIxYTIuMjM1LDIuMjM1LDAsMCwxLTIuMjIyLTIuMjIzLDIuNTMzLDIuNTMzLDAsMCwxLC42NzctMS42NjksNC4wNzQsNC4wNzQsMCwwLDEsLjQ4Ni0uNTQ1TDI0LjE4NSwyNC44OTRsMS42NzUtMS42NXMtLjk4OS0xLjM4OC0xLjMtMS45NzFhOC4zNjksOC4zNjksMCwwLDEtLjc2OC0zLjIxMSw5LjgsOS44LDAsMCwxLC44OC00LjIxNSwxMS41NTUsMTEuNTU1LDAsMCwxLDUuOTgtNS45NjVBMTAuMjE0LDEwLjIxNCwwLDAsMSwzNC45LDdhOS45NjUsOS45NjUsMCwwLDEsNC4xNTEuODgxLDExLjg4MSwxMS44ODEsMCwwLDEsNi4wNzEsNi4wNTIsMTAuMTE3LDEwLjExNywwLDAsMSwwLDguMjYzLDExLjg4LDExLjg4LDAsMCwxLTYuMDcxLDYuMDQ5LDkuOTM0LDkuOTM0LDAsMCwxLTQuMTQ5Ljg4SDI2LjI1NnYzSDM0LjlhMTIuOTksMTIuOTksMCwwLDAsNS4zNzctMS4xNDMsMTQuODg0LDE0Ljg4NCwwLDAsMCw3LjU4LTcuNTU4LDEzLjExNSwxMy4xMTUsMCwwLDAsMC0xMC43MjNaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-302"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CREDENTIAL_STORE/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/601525c6e5604e4192451d5e7328fa3c/Cloud/en-US/c6ebd580c0a642e9a99dbb8ae5c6c562.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-ap10"},{"key":"cf-us10"},{"key":"cf-br10"},{"key":"cf-eu1"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-cn40"}],"CFService":{"name":"credstore","description":"Store and retrieve credentials such as cryptographic keys and passwords.","metadata":{"displayName":"Credential Store"},"plans":[{"technicalName":"standard","name":"standard","description":"Standard plan","metadata":{"bullets":["100 000 credentials"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"alm-ts","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. The ''lite'' plan restricts the files quota to 500 MB and reduces the retention period of queue items to 1 week.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"internal-transport-service-application","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-transport-service-application-SYSTEM","productDisplayName":"Transport Service Application - Transport Service Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"Free","description":"Free Plan","uniqueIdentifier":"alm-ts-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-free-SYSTEM","productDisplayName":"Cloud Transport Management Application - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"Lite Plan","description":"A free plan for the trial purpose","uniqueIdentifier":"alm-ts-lite","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"alm-ts-lite-SYSTEM","productDisplayName":"Transport Service Application - Lite Plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"service-manager","displayName":"Service Manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"subaccount-admin","displayName":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-admin","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"service-operator-access","displayName":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","uniqueIdentifier":"service-manager-service-operator-access","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"container","displayName":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","uniqueIdentifier":"service-manager-container","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"global-offerings-audit","displayName":"global-offerings-audit","description":"Allows read-only access to all service offerings and service plans in a landscape","uniqueIdentifier":"service-manager-global-offerings-audit","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"service-manager-global-offerings-audit-SYSTEM","productDisplayName":"Service Manager - global-offerings-audit","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"subaccount-audit","displayName":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","uniqueIdentifier":"service-manager-subaccount-audit","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}}},{"name":"Test123","displayName":"Test123","description":null,"businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Test123","uniqueIdentifier":"Test123-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","description":"Auditlog API","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Default plan for Auditlog API","uniqueIdentifier":"auditlog-api-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"cis","displayName":"Cloud Management Service","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"local","displayName":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","uniqueIdentifier":"cis-local","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"central","displayName":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","uniqueIdentifier":"cis-central","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"cis-central-SYSTEM","productDisplayName":"Cloud Management (Beta) - Central","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iY2xvdWQtbWFuYWdtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDZkZDc7fS5jbHMtMntmaWxsOiMwMDNiNzQ7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ0LjA3OCw0Ny4xMTVBOC45LDguOSwwLDAsMSw0MSw0OC4zODlWNTJIMzcuNlY0OC4zODlhNyw3LDAsMCwxLTIuODY3LTEuMjc0bC0yLjY1NSwyLjU0OS0yLjMzNi0yLjMzNywyLjU0OC0yLjY1NEE3LjAyOSw3LjAyOSwwLDAsMSwzMS4wMTYsNDEuN0gyNy40MDVWMzguM2gzLjYxMWE2Ljc0OCw2Ljc0OCwwLDAsMSwxLjI3NC0yLjk3NGwtMi41NDgtMi41NDgsMi4zMzYtMi40NDMsMi42NTUsMi41NDlBMTUuMzI0LDE1LjMyNCwwLDAsMSwzNy42LDMxLjYxMVYyOEg0MC42djMuNjExYTExLjA4OSwxMS4wODksMCwwLDEsMy40ODMsMS4yNzRsMi41NDktMi41NDksMi40NDIsMi40NDMtMi41NDgsMi41NDhjLjI4Mi41LjUzMS45NzYuNzQzLDEuNDM0QTguOTYsOC45NiwwLDAsMSw0Ny44LDM4LjNoMy42MXYzLjRINDcuOGExMS43NiwxMS43NiwwLDAsMS0xLjI3NCwyLjk3NGwyLjU0OCwyLjY1NC0yLjQ0MiwyLjMzN1pNMzkuNDA1LDQ1LjJhNC44MzEsNC44MzEsMCwwLDAsMy42MTEtMS41NEE1LjEsNS4xLDAsMCwwLDQ0LjUsNDBhNC43NTUsNC43NTUsMCwwLDAtMS40ODctMy41NTgsNS4yNjUsNS4yNjUsMCwwLDAtNy4yMjEsMEE0Ljc0NCw0Ljc0NCwwLDAsMCwzNC4zMDgsNDAsNS4wODgsNS4wODgsMCwwLDAsMzUuOCw0My42NjQsNC44Miw0LjgyLDAsMCwwLDM5LjQwNSw0NS4yWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuNiwxMGg2LjI4MWE0LjM2Miw0LjM2MiwwLDAsMSwzLjQ2OS0yLjkwNiw2LjMwNiw2LjMwNiwwLDAsMSwyLjE1Ni0yLjIsNS44MTYsNS44MTYsMCwwLDEsNi4xODcsMCw2LjMzNSw2LjMzNSwwLDAsMSwyLjE1NywyLjJBNC4zNjYsNC4zNjYsMCwwLDEsMzEuMzEzLDEwSDM3LjZhMi44NSwyLjg1LDAsMCwxLDIuMTU2Ljg5MUEyLjk2NywyLjk2NywwLDAsMSw0MC42LDEzVjI1aC0zVjEzSDMxLjMxM2E1LjE0NSw1LjE0NSwwLDAsMS0xLjE3MiwyLjE1NiwyLjg4NCwyLjg4NCwwLDAsMS0yLjIuODQ0SDE3LjI1MWEyLjg4LDIuODgsMCwwLDEtMi4yLS44NDRBNS4wOCw1LjA4LDAsMCwxLDEzLjg3NiwxM0g3LjZWNDloMTkuODF2M0g3LjZhMi44ODgsMi44ODgsMCwwLDEtMy0zVjEzYTIuOTY2LDIuOTY2LDAsMCwxLC44NDMtMi4xMDlBMi44NDcsMi44NDcsMCwwLDEsNy42LDEwWm02LDEzLjVhMS4zODQsMS4zODQsMCwwLDEsLjQ2OC0xLjA3OEExLjUwOSwxLjUwOSwwLDAsMSwxNS4xLDIySDMwLjEyNmExLjMyNywxLjMyNywwLDAsMSwxLjUsMS41LDEuNSwxLjUsMCwwLDEtLjQyMSwxLjAzMUExLjM4NSwxLjM4NSwwLDAsMSwzMC4xMjYsMjVIMTUuMWExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41Wk0xNS4xLDI4aDEyYTEuMzI3LDEuMzI3LDAsMCwxLDEuNSwxLjUsMS41MDUsMS41MDUsMCwwLDEtLjQyMiwxLjAzMUExLjM4NCwxLjM4NCwwLDAsMSwyNy4xLDMxaC0xMmExLjYxMiwxLjYxMiwwLDAsMS0xLjUtMS41LDEuMzg0LDEuMzg0LDAsMCwxLC40NjgtMS4wNzhBMS41MDksMS41MDksMCwwLDEsMTUuMSwyOFptMy0xNWg5YTEuMzI1LDEuMzI1LDAsMCwwLDEuNS0xLjUsMS41MTEsMS41MTEsMCwwLDAtLjQyMi0xLjAzMUExLjM5NCwxLjM5NCwwLDAsMCwyNy4xLDEwSDI1LjZhMi45NjcsMi45NjcsMCwwLDAtLjg0NC0yLjEwOSwzLjA1NSwzLjA1NSwwLDAsMC00LjMxMywwQTIuOTY2LDIuOTY2LDAsMCwwLDE5LjYsMTBIMTguMWExLjM5LDEuMzksMCwwLDAtMS4wNzkuNDY5QTEuNTA5LDEuNTA5LDAsMCwwLDE2LjYsMTEuNSwxLjMyNCwxLjMyNCwwLDAsMCwxOC4xLDEzWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-9"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/17b6a171552544a6804f12ea83112a3f.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"cis","description":"Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces.","metadata":{"displayName":"Cloud Management Service"},"plans":[{"technicalName":"central","name":"central","description":"Service plan for using Cloud Management service APIs to manage your global accounts, subaccounts, directories, and entitlements.","free":"true","metadata":{"bullets":["Manages the global account of the instance","manages subaccounts","manages directories","manages entitlements for directories and subaccounts","manages custom entitlements"]}},{"technicalName":"system-basic","name":"system-basic","description":"Service plan for getting entitlement assignments, and commercial-related events to facilitate account and entitlement management.","free":"true","metadata":{}},{"technicalName":"local","name":"local","description":"Service plan for using Cloud Management service APIs to manage your environments and subscriptions to multitenant applications.","free":"true","metadata":{"bullets":["Gets subaccount entitlements","manages environment instances (for example, Cloud Foundry)","manages consumer subscriptions to multitenant application"]}}]}}},{"name":"dqmmicroui","displayName":"Data Quality Services UI","description":"Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Manage configurations and view usage.","description":"Manage configurations and view usage.","uniqueIdentifier":"dqmmicroui-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZHFhYXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRxYWFzPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOS4xLDI4YTM2LjgzNSwzNi44MzUsMCwwLDEsLjYyMS02SDM2LjQ4M2EyNS44LDI1LjgsMCwwLDEsLjQ0NiwyLjk5MWgzQTI1LjgsMjUuOCwwLDAsMCwzOS40ODMsMjJoOC42ODlBMjUuMjU1LDI1LjI1NSwwLDAsMSw0OSwyNWgzQTI0LjQsMjQuNCwwLDAsMCwyOCw0LDIzLjk1MSwyMy45NTEsMCwwLDAsNCwyOEM0LDQxLjAzNCwxNS4wNjksNTEuNjksMjgsNTJWNDcuMzQ1QTE4LjY4MywxOC42ODMsMCwwLDEsMjAuNDQ4LDM3SDI4VjM0SDE5LjcyNEEyOC43OTEsMjguNzkxLDAsMCwxLDE5LjEsMjhabTI3LjgyOC05SDM4Ljc1OWMtMS40NDktNC45NjYtMy44MjgtOS02LjkzMS0xMS41ODZBMjAuNSwyMC41LDAsMCwxLDQ2LjkzMSwxOVpNMjgsOC4zNDVjMy40MTQsMS44NjIsNi4xLDUuNjg5LDcuNjU1LDEwLjY1NUgyMC40NDhDMjEuOSwxNC4wMzQsMjQuNjksMTAuMjA3LDI4LDguMzQ1Wm0tMy44MjgtLjkzMUMyMS4wNjksMTAsMTguNjksMTQuMTM4LDE3LjM0NSwxOUg5LjA2OUEyMC42NzksMjAuNjc5LDAsMCwxLDI0LjE3Miw3LjQxNFpNNywyOGEyMi43NDMsMjIuNzQzLDAsMCwxLC45MzEtNmg4LjU4NkEzNy4wNTUsMzcuMDU1LDAsMCwwLDE2LDI4YTM4LjEwOCwzOC4xMDgsMCwwLDAsLjUxNyw2SDcuOTMxQTIyLjc0MywyMi43NDMsMCwwLDEsNywyOFpNMjQuMTcyLDQ4LjU4NkEyMS4xNzcsMjEuMTc3LDAsMCwxLDkuMDY5LDM3aDguMTcyQTI0LjM3LDI0LjM3LDAsMCwwLDI0LjE3Miw0OC41ODZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzcuODk0LDM2LjhsLS45LjlhLjYwOC42MDgsMCwwLDAsMCwuOGw1LjYsNi4yYS42NjguNjY4LDAsMCwwLDEtLjFsOC4zLTEyLjJhLjQ5NC40OTQsMCwwLDAtLjEtLjdsLTEtLjlhLjU1NS41NTUsMCwwLDAtLjkuMWwtNi42LDkuM2EuNTkuNTksMCwwLDEtLjkuMmwtMy42LTMuNkEuNTYxLjU2MSwwLDAsMCwzNy44OTQsMzYuOFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OSw0NnYzLjdIMzRWMzRoNlYzMUgzMi40QTEuNDMsMS40MywwLDAsMCwzMSwzMi40VjUwLjZBMS4zNjcsMS4zNjcsMCwwLDAsMzIuNCw1Mkg1MC42QTEuMzY3LDEuMzY3LDAsMCwwLDUyLDUwLjZWNDZaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-536"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/d95546360fea44988eb614718ff7e959/Cloud/en-US/8bb7b22e6d4c40b5bfdaef86f59e2036.html"},{"title":"License Terms","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/on-premise/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights/"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"objectstore","displayName":"Object Store","description":"Object Store on SAP BTP provisions an object storage space that can be used by applications to store and manage objects.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"s3-standard","displayName":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","uniqueIdentifier":"8005382","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005382-SYSTEM","productDisplayName":"Object Store - Object Store on SAP Cloud Platform","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"azure-standard","displayName":"ObjectStore","description":"ObjectStore","uniqueIdentifier":"8005790","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"8005790-SYSTEM","productDisplayName":"Object Store - ObjectStore","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"gcs-standard","displayName":"Object Store","description":"Object Store","uniqueIdentifier":"objectstore-gcs-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-gcs-standard-SYSTEM","productDisplayName":"Object Store - Object Store","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","uniqueIdentifier":"objectstore-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"objectstore-standard-SYSTEM","productDisplayName":"Object Store - standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["storage space based on underlying hyperscaler"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ib2JqZWN0c3RvcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm9iamVjdHN0b3JlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNy4xNTMsMTcuNjVBMjQuNjg3LDI0LjY4NywwLDAsMCwxNy41LDE2YTI0LjY4NywyNC42ODcsMCwwLDAtOS42NTMsMS42NSw3Ljc0NCw3Ljc0NCwwLDAsMC0yLjgsMS45NUEzLjkwOCwzLjkwOCwwLDAsMCw0LDIyLjIyNVY0NS43YTMuNzczLDMuNzczLDAsMCwwLDEuMDQ5LDIuNjI1LDcuNzQ0LDcuNzQ0LDAsMCwwLDIuOCwxLjk1QTIzLjI4NCwyMy4yODQsMCwwLDAsMTcuNSw1MmEyNC42ODcsMjQuNjg3LDAsMCwwLDkuNjUzLTEuNjUsNy43NDQsNy43NDQsMCwwLDAsMi44LTEuOTVBNC4wNTMsNC4wNTMsMCwwLDAsMzEsNDUuNzc1VjIyLjIyNUEzLjkwOCwzLjkwOCwwLDAsMCwyOS45NTEsMTkuNiw3Ljc0NCw3Ljc0NCwwLDAsMCwyNy4xNTMsMTcuNjVaTTI4LDQ1Ljc3NWMwLC45LS4yODcsMS4yNzUtMi4xMDYsMS45NUEyNC4xNTQsMjQuMTU0LDAsMCwxLDE3LjUsNDlhMjQuMTU0LDI0LjE1NCwwLDAsMS04LjM5NC0xLjI3NUM3LjM1Nyw0Ny4wNSw3LDQ2LjYsNyw0NS43NzVWNDEuNjVBOC45Myw4LjkzLDAsMCwwLDEwLjQzNSw0M2EyOC4zODQsMjguMzg0LDAsMCwwLDcuMDY1LjgyNUEyOS4zOTEsMjkuMzkxLDAsMCwwLDI0LjYzNSw0Myw4LjEzNyw4LjEzNywwLDAsMCwyOCw0MS42NVpNMjgsMzcuOWMwLC45LS4yODcsMS40MjUtMi4xMDYsMi4xQTI0LjE1NCwyNC4xNTQsMCwwLDEsMTcuNSw0MS4yNzUsMjQuMTU0LDI0LjE1NCwwLDAsMSw5LjEwNiw0MEM3LjM1NywzOS4zMjUsNywzOC43MjUsNywzNy45VjMzLjg1YTguOTkxLDguOTkxLDAsMCwwLDMuNDM1LDEuNzI1LDI4LjYsMjguNiwwLDAsMCw3LjA2NS43NWM0LjksMCw4LjE5Mi0uOSwxMC41LTIuNTVaTTI1LjU5NCwyNC43QTIyLjM3LDIyLjM3LDAsMCwxLDE3LjUsMjUuOTc1LDIyLjM3LDIyLjM3LDAsMCwxLDkuNDA2LDI0LjdDNy42NTgsMjMuOTUsNywyMy4xMjUsNywyMi4yMjVjMC0xLjU3NSwzLjIyNS0zLjQ1LDEwLjUtMy40NSw3LjM0NSwwLDEwLjUsMS44NzUsMTAuNSwzLjQ1QzI4LDIzLjEyNSwyNy40MTIsMjMuOTUsMjUuNTk0LDI0LjdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTIsMTUuOTg3VjEzLjAxM0g0OC44NDFhNy43ODUsNy43ODUsMCwwLDAtLjQ2NS0xLjM0N2MtLjE4Ni0uNC0uNC0uODE5LS42NS0xLjI1NWwyLjIzLTIuMjNMNDcuODE5LDYuMDQ0bC0yLjIzLDIuMjNhMTEuNSwxMS41LDAsMCwwLTIuNjk1LTEuMTE1VjRIMzkuOTJWNy4xNTlhMTMuNTUyLDEzLjU1MiwwLDAsMC0yLjUwOSwxLjExNWwtMi4zMjItMi4yM0wzMy4wNDQsOC4xODFsMi4yMywyLjIzYTUuOTE0LDUuOTE0LDAsMCwwLTEuMTE1LDIuNkgzMXYyLjk3NGgzLjE1OWE2LjE1NCw2LjE1NCwwLDAsMCwxLjExNSwyLjZsLTIuMjMsMi4zMjMsMi4wNDUsMi4wNDUsMi4zMjItMi4yM2E2LjE0NSw2LjE0NSwwLDAsMCwyLjUwOSwxLjExNVYyNWgyLjk3NFYyMS44NDFhNy44MTcsNy44MTcsMCwwLDAsMi43LTEuMTE1bDIuMjMsMi4yMywyLjEzNy0yLjA0NS0yLjIzLTIuMzIzYTEwLjI5NCwxMC4yOTQsMCwwLDAsMS4xMTUtMi42Wm0tNy4zNDEsMS43MTlhNC4zNzgsNC4zNzgsMCwwLDEtNi4zMTgsMCw0LjQ0OCw0LjQ0OCwwLDAsMS0xLjMtMy4yMDYsNC4xNDYsNC4xNDYsMCwwLDEsMS4zLTMuMTEzLDQuNjA2LDQuNjA2LDAsMCwxLDYuMzE4LDAsNC4xNTcsNC4xNTcsMCwwLDEsMS4zLDMuMTEzQTQuNDYsNC40NiwwLDAsMSw0NC42NTksMTcuNzA2WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-119"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/data-storage/objectstore.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/ObjectStore/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us10"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us30"}],"CFService":{"name":"objectstore","description":"Supports storage and management of unstructured data (files, BLOBs).","metadata":{"displayName":"Object Store"},"plans":[{"technicalName":"s3-standard","name":"s3-standard","description":"Provides an objectstore on AWS S3 that applications can use to store & manage objects","metadata":{"bullets":["AWS-S3 Standard Storage class (Available only in AWS based Landscapes)."]}},{"technicalName":"standard","name":"standard","description":"Provides an object store space (bucket or a container), based on underlying hyperscaler offerings, that applications can use to store & manage objects.","metadata":{"bullets":["storage space based on underlying hyperscaler"]}}]}}},{"name":"Backend-service","displayName":"Backend Service","description":"With SAP Cloud Platform Backed service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA]","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"SAP Cloud Platform Backend service [BETA] Standard Plan","description":"SAP Cloud Platform Backend service [BETA] Standard Plan","uniqueIdentifier":"Backend-service","provisioningMethod":"NONE_REQUIRED","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYmFja2VuZC1zZXJ2aWNlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1YTdhOTQ7fS5jbHMtMntmaWxsOiMwMDkyZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iYWNrZW5kPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNy45ODZoLS41OWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3YTYuMDU0LDYuMDU0LDAsMCwxLDUuODY0LDQuMDMzbDEuMzA3LDMuMjlMMjkuMzEsMTIuNWEzLjkyMiwzLjkyMiwwLDAsMSwyLjA0My0uNTkxLDMuOTg4LDMuOTg4LDAsMCwxLDMuOTE0LDMuMjQ5bC4xNTkuODQ1aDNjLS4wNDctLjQzOS0uMTA5LS45LS4yMS0xLjRBNi45NDEsNi45NDEsMCwwLDAsMjcuNzYyLDkuOTI4LDkuNDUyLDkuNDUyLDAsMCwwLDE5LjA1NSw0QzguODYzLDQuMjQyLDkuOCwxNC42MjEsOS44LDE0LjYyMUE4LjM4Nyw4LjM4NywwLDAsMCwxMi40MSwzMC45ODZIMTNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDYuNzUsMjYuNDgyYTUuMjI4LDUuMjI4LDAsMCwwLTQuNjIxLDIuODA5bC0yLjIxNC0uNDQ0Yy4wMi0uMjg1LjA4NS0uNTU3LjA4NS0uODQ3YTEyLDEyLDAsMSwwLTE4LjgsOS44NzNMMTkuMjYyLDQxLjZBNS4yNjEsNS4yNjEsMCwxLDAsMjEuOTE1LDQzbDEuOTU3LTMuNzc0YTExLjQ4MSwxMS40ODEsMCwwLDAsOS41NTItLjU3N2wzLjI4Miw0LjgwNmE1LjIsNS4yLDAsMCwwLTEuMTk0LDMuMyw1LjI1LDUuMjUsMCwxLDAsNS4yNS01LjI1LDUuMTgsNS4xOCwwLDAsMC0xLjU3Ny4yNjhsLTMuMjgtNC44YTExLjkzNSwxMS45MzUsMCwwLDAsMy40MjYtNS4xNzVsMi4yMi40NDVhNS4yMzcsNS4yMzcsMCwxLDAsNS4yLTUuNzUyWk0xOC4yNSw0OWEyLjI1LDIuMjUsMCwxLDEsMi4yNS0yLjI1QTIuMjUyLDIuMjUyLDAsMCwxLDE4LjI1LDQ5Wm0yNC43NjItMi4yNWEyLjI1LDIuMjUsMCwxLDEtMi4yNS0yLjI1QTIuMjUzLDIuMjUzLDAsMCwxLDQzLjAxMiw0Ni43NVpNMjgsMzdhOSw5LDAsMSwxLDktOUE5LjAxLDkuMDEsMCwwLDEsMjgsMzdabTE4Ljc1LTMuMDE4QTIuMjUsMi4yNSwwLDEsMSw0OSwzMS43MzIsMi4yNTIsMi4yNTIsMCwwLDEsNDYuNzUsMzMuOTgyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMyLjE1NywyMy4yMTJhMi42MzcsMi42MzcsMCwwLDAtLjk1LS42NjJBOC4xNDYsOC4xNDYsMCwwLDAsMjgsMjJhOC4xNDYsOC4xNDYsMCwwLDAtMy4yMDcuNTUsMi42MzcsMi42MzcsMCwwLDAtLjk1LjY2MiwxLjM2OSwxLjM2OSwwLDAsMC0uMzYzLjkxNnY3LjcyYTEuMzI0LDEuMzI0LDAsMCwwLC4zNjMuOTE0LDIuNjA5LDIuNjA5LDAsMCwwLC45NDguNjYyQTcuNyw3LjcsMCwwLDAsMjgsMzRhOC4xNDYsOC4xNDYsMCwwLDAsMy4yMDctLjU1LDIuNjM3LDIuNjM3LDAsMCwwLC45NS0uNjYyLDEuNDI3LDEuNDI3LDAsMCwwLC4zNjMtLjkxNlYyNC4xMjhBMS4zNjksMS4zNjksMCwwLDAsMzIuMTU3LDIzLjIxMlptLTMuMTQsOS43NjFjLS4zMjUuMDMtLjY2MS4wNTItMS4wMTcuMDUyYTEwLjI4NiwxMC4yODYsMCwwLDEtMS4yMzktLjA3N3YtNi43NGExMi4wNzMsMTIuMDczLDAsMCwwLDEuMjM5LjA2Yy4zNTYsMCwuNjkzLS4wMTgsMS4wMTctLjA0NlptMi42MDYtMS4xYzAsLjI1NC0uMzMzLjUzMS0uODkzLjc0YTUuMTcyLDUuMTcyLDAsMCwxLS44MS4yMjZWMjYuMWE0Ljk1LDQuOTUsMCwwLDAsMS43LS42Wk0zMC43MywyNC45YTcuODQ3LDcuODQ3LDAsMCwxLTIuNzMuNDEzLDcuODI3LDcuODI3LDAsMCwxLTIuNzI4LS40MTNjLS41NTQtLjIzNy0uODcyLS41MTUtLjg3Mi0uNzY0di0uMDEyYzAtLjQ3MSwxLjI4My0xLjE1MywzLjYtMS4xNTMsMi4zMzMsMCwzLjYyMy42ODIsMy42MjMsMS4xNjZDMzEuNjIzLDI0LjM5MiwzMS4zLDI0LjY3LDMwLjczLDI0LjlaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/DRAFT/70dea311943a4ab99f903ccc584225f6/Internal/en-US"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"PortalApplication","displayName":"Cloud Portal Service","description":"SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Create portal sites with content and business apps.","uniqueIdentifier":"portalapplication-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"portalapplication-standard-SYSTEM","productDisplayName":"Portal Application - Portal Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMTgpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC44MTMxIDI3LjE0MzRDMTguMjk0NiAyMC4yNTQyIDIzLjgxNTQgMTIuNzcyNSAzMS43MDI2IDEyLjc3MjVDMzcuODEyMyAxMi43NzI1IDQyLjI5NTcgMTYuNDc2MiA0NC40MzU0IDIyLjIyNDRDNTAuMzcwMSAyMS44MDk5IDU2IDI2Ljg1ODEgNTYgMzQuMTA2N0M1NiA0MS43MzY3IDQ5Ljk5OTcgNDYuMzI5NSA0My41MDc1IDQ1LjkyOUg0MC4xMjc2VjM0LjE2MjRINDAuMTI2NkM0MC4xMjczIDM0LjEyMTkgNDAuMTI3NiAzNC4wODE0IDQwLjEyNzYgMzQuMDQwOEM0MC4xMjc2IDMwLjEwODMgMzYuOTA0MSAyNi45MjA1IDMyLjkyNzYgMjYuOTIwNUMyOC45NTEyIDI2LjkyMDUgMjUuNzI3NiAzMC4xMDgzIDI1LjcyNzYgMzQuMDQwOEMyNS43Mjc2IDM0LjA4MTQgMjUuNzI4IDM0LjEyMTkgMjUuNzI4NyAzNC4xNjI0SDI1LjcyNzZWNDUuOTI5SDE3Ljc5ODNDMTEuMzM4IDQ1LjkyOSA4IDQxLjk2MTggOCAzNi40MTU5QzggMzAuNTk1NiAxMi4yNTExIDI2LjAwMjIgMTguODEzMSAyNy4xNDM0WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMTgpIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTE4IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjQ0MzUgMTcuNjQ0NCkgcm90YXRlKDM0Ljk1MjkpIHNjYWxlKDQwLjU0NjEgNzEuOTUpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTE4Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-2"},{"key":"SERVICE-134"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Portal_Service/1.0/en-US"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"neo-eu1-canary"}],"CFService":{"name":"PortalApplication","plans":[{"technicalName":"standard","name":"standard","description":"Create portal sites with content and business apps.","metadata":{"bullets":[]}}]}}},{"name":"hana-cloud","displayName":"SAP HANA Cloud","description":"Leverage the in-memory data processing capabilities of SAP HANA in the cloud as one simple gateway to all data.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hana","displayName":"hana","description":"SAP HANA in-memory database","uniqueIdentifier":"hana-cloud-hana","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-SYSTEM","productDisplayName":"SAP HANA Cloud - An in-memory database supporting federation and replication","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"hana-cloud-connection","displayName":"hana-cloud-connection","description":"Connection between SAP HANA Cloud services","uniqueIdentifier":"hana-cloud-hana-cloud-connection","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-cloud-hana-cloud-connection-SYSTEM","productDisplayName":"SAP HANA Cloud - Connection between SAP HANA Cloud services","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"print","displayName":"Print Service","description":"SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application''s development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"receiver","displayName":"receiver","description":"Establish the connection to print clients","uniqueIdentifier":"print-receiver","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}}},{"name":"application-logs","displayName":"Application Logging Service","description":"In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Free offering for development purposes","uniqueIdentifier":"application-logs-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Standard Service Plan","uniqueIdentifier":"applicationlogsstandard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"applicationlogsstandard-SYSTEM","productDisplayName":"Application Logging - Application logs standard plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}}},{"name":"process-automation","displayName":"SAP Build Process Automation","description":"SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"api-calls","displayName":"api-calls","description":"This plan enables you to add additional API calls","uniqueIdentifier":"processautomation-api-calls","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-api-calls-SYSTEM","productDisplayName":"SAP Process Automation - API Calls","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-unattended","displayName":"automation-unattended","description":"This plan enables you to execute unattended automation","uniqueIdentifier":"processautomation-automation-unattended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-unattended-SYSTEM","productDisplayName":"SAP Process Automation - Unattended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-standard-SYSTEM","productDisplayName":"Process Automation - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"automation-attended","displayName":"automation-attended","description":"Allows you to use automations (bots) in attended mode, which means you need to take action.","uniqueIdentifier":"processautomation-automation-attended","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-automation-attended-SYSTEM","productDisplayName":"SAP Process Automation - Attended Automation","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free-usage","displayName":"free-usage","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free-usage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-free-usage-SYSTEM","productDisplayName":"SAP Process Automation - Free Usage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced-user","displayName":"advanced-user","description":"Allows you to create advanced users. They can design, monitor, or administrate the solution and access the process visibility workspace. The entitlement includes access to the SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-advanced-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-advanced-user-SYSTEM","productDisplayName":"SAP Process Automation - Advanced User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 5000 per month","Global Storage = 500 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","uniqueIdentifier":"processautomation-free","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"processautomation-free-SYSTEM","productDisplayName":"Process Automation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"storage","displayName":"storage","description":"This plan enables you to add additional storage","uniqueIdentifier":"processautomation-storage","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-storage-SYSTEM","productDisplayName":"SAP Process Automation - Storage","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard-user","displayName":"standard-user","description":"Allows you to create standard users. They are process participants who trigger, approve, or contribute to a process instance. The entitlement includes the access to SAP Build Work Zone, standard edition and a certain amount of API calls and storage. In API-driven use cases or with a very many process instances, additional licensing could be needed for API calls and storage.","uniqueIdentifier":"processautomation-standard-user","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"processautomation-standard-user-SYSTEM","productDisplayName":"SAP Process Automation - Standard User","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Active User = 1","API Calls 1000 per month","Global Storage = 100 MB"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC45NiI+CjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI1NiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNC40NTk1IDE1LjQ2OTdDMzUuNjM2NiAxNC40MjMzIDM3LjQ1ODQgMTQuNTA4MSAzOC41Mjg1IDE1LjY1OTFMNDguMjQxMiAyNi4xMDU4QzQ5LjI0IDI3LjE4IDQ5LjI0IDI4LjgyMDYgNDguMjQxMiAyOS44OTQ5TDM4LjUyODUgNDAuMzQxNkMzNy40NTg0IDQxLjQ5MjUgMzUuNjM2NiA0MS41Nzc0IDM0LjQ1OTUgNDAuNTMxQzMzLjI4MjQgMzkuNDg0NyAzMy4xOTU2IDM3LjcwMzQgMzQuMjY1NyAzNi41NTI0TDQyLjIxNyAyOC4wMDAzTDM0LjI2NTcgMTkuNDQ4M0MzMy4xOTU2IDE4LjI5NzMgMzMuMjgyNCAxNi41MTYgMzQuNDU5NSAxNS40Njk3WiIgZmlsbD0iIzA1M0I3MCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIxLjYwMjggMTUuNDY5N0MyMi43Nzk5IDE0LjQyMzMgMjQuNjAxNyAxNC41MDgxIDI1LjY3MTggMTUuNjU5MUwzNS4zODQ1IDI2LjEwNThDMzYuMzgzMyAyNy4xOCAzNi4zODMzIDI4LjgyMDYgMzUuMzg0NSAyOS44OTQ5TDI1LjY3MTggNDAuMzQxNkMyNC42MDE3IDQxLjQ5MjUgMjIuNzc5OSA0MS41Nzc0IDIxLjYwMjggNDAuNTMxQzIwLjQyNTcgMzkuNDg0NyAyMC4zMzg5IDM3LjcwMzQgMjEuNDA5IDM2LjU1MjRMMjkuMzYwMyAyOC4wMDAzTDIxLjQwOSAxOS40NDgzQzIwLjMzODkgMTguMjk3MyAyMC40MjU3IDE2LjUxNiAyMS42MDI4IDE1LjQ2OTdaIiBmaWxsPSIjMEE2RUQxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4xNDQxOCAxNS41NjMxQzkuNTg4NjIgMTQuMjc5MSAxMS44MTkxIDE0LjM4MTMgMTMuMTM1IDE1Ljc5NjdMMjIuMjk2NiAyNS42NTA1QzIzLjUzMzIgMjYuOTgwNSAyMy41MzMyIDI5LjAxODUgMjIuMjk2NiAzMC4zNDg1TDEzLjEzNSA0MC4yMDIzQzExLjgxOTEgNDEuNjE3NyA5LjU4ODYyIDQxLjcxOTkgOC4xNDQxOSA0MC40MzU5QzYuNjg5MDYgMzkuMTQyNSA2LjU3OTQ1IDM2LjkzMDMgNy45MDUzIDM1LjUwNDNMMTQuODgyOCAyNy45OTk1TDcuOTA1MyAyMC40OTQ3QzYuNTc5NDUgMTkuMDY4NyA2LjY4OTA2IDE2Ljg1NjUgOC4xNDQxOCAxNS41NjMxWk0xMS45MjYxIDE2LjkyMDZDMTEuMjIzMyAxNi4xNjQ3IDEwLjAxNzEgMTYuMTA2OCA5LjI0MDg1IDE2Ljc5NjhDOC40NzUzMiAxNy40NzczIDguNDIxMjggMTguNjI1NSA5LjExNDIgMTkuMzcwOEwxNi42MTQyIDI3LjQzNzVDMTYuOTA4NyAyNy43NTQzIDE2LjkwODcgMjguMjQ0NyAxNi42MTQyIDI4LjU2MTVMOS4xMTQyIDM2LjYyODJMOC41MDk3NSAzNi4wNjYyTDkuMTE0MiAzNi42MjgyQzguNDIxMjggMzcuMzczNSA4LjQ3NTMyIDM4LjUyMTcgOS4yNDA4NSAzOS4yMDIyTDguNjkyNTIgMzkuODE5MUw5LjI0MDg1IDM5LjIwMjJDMTAuMDE3MSAzOS44OTIyIDExLjIyMzMgMzkuODM0MyAxMS45MjYxIDM5LjA3ODRMMjEuMDg3NyAyOS4yMjQ2QzIxLjczNTIgMjguNTI4IDIxLjczNTIgMjcuNDcxIDIxLjA4NzcgMjYuNzc0NEwxMS45MjYxIDE2LjkyMDZaIiBmaWxsPSIjMEE2RUQxIi8+CjwvZz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-863"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/PROCESS_AUTOMATION"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/index.html#/serviceCatalog/sap-build-process-automation"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"process-automation","plans":[{"technicalName":"standard","name":"standard","description":"Subscribe to the production service. Note that to fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}},{"technicalName":"automation-attended","name":"automation-attended","description":"This plan enables you to execute attended automation","metadata":{"bullets":[]}},{"technicalName":"advanced-user","name":"advanced-user","description":"This plan enables you to add an advanced user","metadata":{"bullets":[]}},{"technicalName":"free-usage","name":"free-usage","description":"This plan enables you to add an free-usage user","metadata":{"bullets":[]}},{"technicalName":"standard-user","name":"standard-user","description":"This plan enables you to add a standard user","metadata":{"bullets":[]}},{"technicalName":"automation-unattended","name":"automation-unattended","description":"Allows you to use automations (bots) in unattended mode, which means without your intervention.","metadata":{}},{"technicalName":"api-calls","name":"api-calls","description":"Allows you to increase the API calls quota if you need more API calls than provided by the already selected entitlements.","metadata":{}},{"technicalName":"storage","name":"storage","description":"Allows you to increase the storage quota if you need more storage than provided by the already selected entitlements.","metadata":{}},{"technicalName":"free","name":"free","description":"Only community support is available for free tier service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile. Subscribe to the free service. To fully use all capabilities of SAP Build Process Automation, you also must subscribe to the standard entitlement at no additional cost.","metadata":{"bullets":[]}}]}}},{"name":"autoscaler","displayName":"Application Autoscaler","description":"The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"This plan allows four scaling rules and two schedules per policy document","uniqueIdentifier":"autoscalerlite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"autoscalerlite-SYSTEM","productDisplayName":"Application Autoscaler - This plan allows four scaling rules and two schedules per policy document","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"This plan allows ten scaling rules and ten schedules per policy document","uniqueIdentifier":"autoscaler-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}}},{"name":"hana","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"hdi-shared","displayName":"SAP HANA Schemas & HDI Containers","description":"SAP HANA Schemas & HDI Containers","uniqueIdentifier":"hana-hdi-shared","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"hana-hdi-shared-SYSTEM","productDisplayName":"SAP HANA Schemas & HDI Containers - SAP HANA Schemas & HDI Containers","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-privacy-integration-service","displayName":"Data Privacy Integration","description":"Data Privacy Integration (DPI) is a service that supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Standard Plan","uniqueIdentifier":"data-privacy-integration-service-standard","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-standard-SYSTEM","productDisplayName":"Data Privacy Integration Service - Provides Access to APIs for managing Information, Consent and Deletion capabilities","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","uniqueIdentifier":"data-privacy-integration-service-free","provisioningMethod":"SERVICE_BROKER","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"data-privacy-integration-service-free-SYSTEM","productDisplayName":"Data Privacy Integration Service - free","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1wcml2YWN5LWludGVncmF0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjI2LDMyLjgzYTEzLjQ3OCwxMy40NzgsMCwwLDEtLjg3LTIuODhBNS42ODcsNS42ODcsMCwwLDEsMTksMzFhNi4xLDYuMSwwLDAsMS02LTYsNi4xLDYuMSwwLDAsMSw2LTYsNS42LDUuNiwwLDAsMSwzLC43OFYxNi41MUE4Ljg2OCw4Ljg2OCwwLDAsMCwxOSwxNmE4LjU4Myw4LjU4MywwLDAsMC02LjM2LDIuNjQsOC45ODEsOC45ODEsMCwwLDAsMCwxMi43MkE4LjU4Myw4LjU4MywwLDAsMCwxOSwzNGE4LjYsOC42LDAsMCwwLDQuMjktMS4wOEMyMy4yOSwzMi44OSwyMy4yNiwzMi44NiwyMy4yNiwzMi44M1pNMzMuODUsNDQuMTFjLS4xOC0uMDktLjM2LS4yMS0uNTctLjMzYTI2LjE0NSwyNi4xNDUsMCwwLDEtMy41NC0yLjQzQTguNjQyLDguNjQyLDAsMCwxLDMxLDQ2djNIN1Y0NmE4LjcsOC43LDAsMCwxLDIuNjQtNi4zNkE4LjU4Myw4LjU4MywwLDAsMSwxNiwzN2g2YTguNjc3LDguNjc3LDAsMCwxLDQuNSwxLjE3LDE4LjU1NiwxOC41NTYsMCwwLDEtMi40LTMuNTFjLS4wOS0uMTUtLjE4LS4zMy0uMjctLjUxQTkuMDQ2LDkuMDQ2LDAsMCwwLDIyLDM0SDE2YTExLjU2LDExLjU2LDAsMCwwLTQuNjIuOTMsMTIuMTgsMTIuMTgsMCwwLDAtMy44NCwyLjU4LDEyLjAxOCwxMi4wMTgsMCwwLDAtMi41OCwzLjg0QTExLjczLDExLjczLDAsMCwwLDQsNDZ2NkgzNFY0NkExMi43LDEyLjcsMCwwLDAsMzMuODUsNDQuMTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSw3LjcwOWwuOTQuNjcyYTE1LjE4NywxNS4xODcsMCwwLDAsNy44MTMsMi41NDZMNDksMTAuOTM0LDQ5LDI2LjJjMCw4Ljg1LTkuNDY4LDEzLjA2NC05Ljg2OCwxMy4yNDFsLS42MzIuMjcyLS42MzItLjI3MkMzNy40NjgsMzkuMjYxLDI4LDM1LjA0NywyOCwyNi4yVjEwLjkzNGwxLjc0Ny0uMDA3QTE1LjE4NywxNS4xODcsMCwwLDAsMzcuNTYsOC4zODFsLjk0LS42NzJNMzguNSw0LDM2Ljc2Myw1LjI0M2wtLjk0LjY3M0ExMi4yODIsMTIuMjgyLDAsMCwxLDI5LjcwOSw3LjlsLTEuNzIyLjAwN0wyNSw3LjkyNFYyNi4yYzAsMTAuNTQ4LDEwLjQ2OSwxNS40ODIsMTEuNjYzLDE2LjAxbC42NTYuMjgzTDM4LjUsNDNsMS4xODEtLjUxLjYzMi0uMjczQzQxLjUzMSw0MS42NzksNTIsMzYuNzQ1LDUyLDI2LjJsMC0xNS4yNjNWNy45MjRMNDkuMDEsNy45MSw0Ny4yNjcsNy45YTEyLjI4OCwxMi4yODgsMCwwLDEtNi4wODgtMS45ODVsLS45NDItLjY3NUwzOC41LDRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNDQ3LDI2LjQ0bDEuMDUsMi4xOWgtNC4wMmwxLjA1LTIuMTlhMi43NTcsMi43NTcsMCwwLDEtLjY2LS42NiwxLjYxNSwxLjYxNSwwLDAsMS0uMjctLjkzLDEuNjQ0LDEuNjQ0LDAsMCwxLC41Ny0xLjMyLDEuODgzLDEuODgzLDAsMCwxLDIuNjQsMCwxLjY0NCwxLjY0NCwwLDAsMSwuNTcsMS4zMiwxLjYxNSwxLjYxNSwwLDAsMS0uMjcuOTNBMi43NTcsMi43NTcsMCwwLDEsMzkuNDQ3LDI2LjQ0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjI0NywxNi45M2EyLjg1MiwyLjg1MiwwLDAsMSwuMDMuNDJ2My43OEgzNS43VjE3LjM1YTIuODUyLDIuODUyLDAsMCwxLC4wMy0uNDIsMS4xMSwxLjExLDAsMCwxLC4yNy0uNjYsMi4wMzQsMi4wMzQsMCwwLDEsLjg0LS41NCw0LjMxMyw0LjMxMywwLDAsMSwxLjU5LS4yNGguMTJhNC4zMTMsNC4zMTMsMCwwLDEsMS41OS4yNCwyLjAzNCwyLjAzNCwwLDAsMSwuODQuNTRBMS4xMSwxLjExLDAsMCwxLDQxLjI0NywxNi45M1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ny4yNDcsMTAuOTNhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgtMi41NWwtLjk2LS42Ni0uOTMuNjZhMTUuMjc4LDE1LjI3OCwwLDAsMS03LjgsMi41NWgtMS43N1YyNi4yYzAsOC44NSw5LjQ4LDEzLjA1LDkuODcsMTMuMjNsLjYzLjI3LjY2LS4yN2MuMzktLjE4LDkuODQtNC4zOCw5Ljg0LTEzLjIzVjEwLjkzWm0tMi4xOSwxNy43YTEuNzA5LDEuNzA5LDAsMCwxLS4zLDEuMDgsMS43ODYsMS43ODYsMCwwLDEtLjYzLjU0LDEuOTQ5LDEuOTQ5LDAsMCwxLS45My4yNGgtOS40MmExLjk0OSwxLjk0OSwwLDAsMS0uOTMtLjI0LDEuNzg2LDEuNzg2LDAsMCwxLS42My0uNTQsMS43MDksMS43MDksMCwwLDEtLjMtMS4wOFYyMi45OWExLjY3NSwxLjY3NSwwLDAsMSwuMy0xLjA1LDEuNzA2LDEuNzA2LDAsMCwxLC42My0uNiwxLjkyOCwxLjkyOCwwLDAsMSwuOTMtLjIxaC4wM1YxNy4zNWE0LDQsMCwwLDEsLjIxLTEuMjksMi43NDUsMi43NDUsMCwwLDEsLjcyLTEuMiw0LjM4NSw0LjM4NSwwLDAsMSwxLjQxLS45LDYuMjEsNi4yMSwwLDAsMSwyLjI4LS4zM2guMTJhNi4yMSw2LjIxLDAsMCwxLDIuMjguMzMsNC4zODUsNC4zODUsMCwwLDEsMS40MS45LDIuNzQ1LDIuNzQ1LDAsMCwxLC43MiwxLjIsNCw0LDAsMCwxLC4yMSwxLjI5djMuNzhoLjAzYTEuOTI4LDEuOTI4LDAsMCwxLC45My4yMSwxLjcwNiwxLjcwNiwwLDAsMSwuNjMuNiwxLjY3NSwxLjY3NSwwLDAsMSwuMywxLjA1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-462"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATA_PRIVACY_INTEGRATION"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/313a456d8f6c47289945699fbf5ab0c6/DEV/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/data-privacy-integration"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-eu20"}],"CFService":{"name":"data-privacy-integration-service","description":"Data Privacy Integration offers capabilities to retrieve, delete and manage business context for personal data.","metadata":{"displayName":"Data Privacy Integration"},"plans":[{"technicalName":"application","name":"application","description":"Application Plan","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Standard Plan","metadata":{"bullets":[]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"identity","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Register an application into your Identity Authentication tenant","uniqueIdentifier":"identity-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}}},{"name":"one-mds","displayName":"Master Data Integration","description":"SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"sap-integration","displayName":"sap-integration","description":"Service plan for SAP-to-SAP integrations","uniqueIdentifier":"one-mds-sap-integration","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Limit to 1 million requests per month","50 GB of data retained"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"Default plan for reuse service scenarios","uniqueIdentifier":"one-mds-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"one-mds-default-SYSTEM","productDisplayName":"Master Data Integration - Default plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}}},{"name":"document-translation","displayName":"Document Translation","description":"Provides an API that allows you to translate documents of various formats into multiple languages.","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"document-translation-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-free-SYSTEM","productDisplayName":"Document Translation - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"Default","description":"Default service plan for Document Translation.","uniqueIdentifier":"document-translation-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"document-translation-default-SYSTEM","productDisplayName":"Document Translation - Document Translation default service plan","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLW1hY2hpbmUtdHJhbnNsYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9LmNscy0ze2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAuNDM3LDI4LjQ0OEEyLjg0NSwyLjg0NSwwLDAsMCwxMS45NDksMjhhMi44MzYsMi44MzYsMCwwLDAtMS41MTItLjQ0OCwyLjc5NCwyLjc5NCwwLDAsMC0xLjQuMzc4bC0uMTIuMDcuMTIuMDdBMi43OTQsMi43OTQsMCwwLDAsMTAuNDM3LDI4LjQ0OFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy43MiwzOC42MzdhMS4yLDEuMiwwLDAsMC0uMzYtLjg3N0wyOS44LDM0LjE5NGExLjI1OCwxLjI1OCwwLDAsMC0xLjgxLDAsMS4yODksMS4yODksMCwwLDAsMCwxLjc4NEwyOS40LDM3LjM3MkgyOC4wMDVhNC44NzksNC44NzksMCwwLDEtMS45MzktLjM4Nyw0Ljk4NSw0Ljk4NSwwLDAsMS0xLjU4MS0xLjA2NCw0Ljk3LDQuOTcsMCwwLDEtMS40NDktMy41MnYtLjg5MmExLjI0MSwxLjI0MSwwLDAsMC0uMzcyLS44OSwxLjI1OSwxLjI1OSwwLDAsMC0yLjE1OC44OVYzMi40YTcuMzgzLDcuMzgzLDAsMCwwLC41ODUsMi45MTgsNy41NjEsNy41NjEsMCwwLDAsMy45OTQsNCw3LjMyMyw3LjMyMywwLDAsMCwyLjkyLjU4N2gxLjRsLTEuNDIsMS40MjFhMS4yNTEsMS4yNTEsMCwwLDAtLjM4Ni45MDUsMS4xNDEsMS4xNDEsMCwwLDAsLjM3NC44NjMsMS4xNywxLjE3LDAsMCwwLC44OTEuNCwxLjI0OSwxLjI0OSwwLDAsMCwuOS0uMzg3bDMuNjA1LTMuNTc3QTEuMzE0LDEuMzE0LDAsMCwwLDMzLjcyLDM4LjYzN1oiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMC4yNzMsMjIuM2ExLjI1NSwxLjI1NSwwLDAsMCwxLjgxMywwLDEuMjkzLDEuMjkzLDAsMCwwLDAtMS43ODdsLTEuNDExLTEuMzg5aDEuNGE0LjksNC45LDAsMCwxLDEuOTQ1LjM4Nyw0LjkzOCw0LjkzOCwwLDAsMSwyLjY0NywyLjY0NCw0Ljg5MSw0Ljg5MSwwLDAsMSwuMzg5LDEuOTM5di44OTFhMS4yNzQsMS4yNzQsMCwwLDAsMi4xODQuODgzLDEuMjU4LDEuMjU4LDAsMCwwLC4zNDktLjg4M3YtLjg5MUE3LjMyLDcuMzIsMCwwLDAsMzksMjEuMTc1YTcuNTYsNy41NiwwLDAsMC00LTQsNy4zNDIsNy4zNDIsMCwwLDAtMi45MjYtLjU4N0gzMC42NmwxLjQyNi0xLjQyM2ExLjI2NSwxLjI2NSwwLDAsMCwuMzg2LS45QTEuMTQ3LDEuMTQ3LDAsMCwwLDMyLjEsMTMuNGExLjIyOSwxLjIyOSwwLDAsMC0xLjgtLjAxM2wtMy42MTQsMy41NzdhMS4zLDEuMywwLDAsMC0uMzQ1Ljg5MywxLjIwNSwxLjIwNSwwLDAsMCwuMzYuODc4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUxLjA0Myw0MS45ODJhMjIuOTc5LDIyLjk3OSwwLDAsMS02LjQ3NS0zLjAxNSwxNS44MDcsMTUuODA3LDAsMCwwLDIuOTIzLTYuNTg5SDUwLjZWMjkuNjI0SDQzLjgxNlYyNi40N0g0MS4wMjN2My4xNTRIMzQuMTk0djIuNzU0aDMuM2ExNC4yMDcsMTQuMjA3LDAsMCwwLDMuMDMxLDYuNjg0LDIzLjQxMiwyMy40MTIsMCwwLDEtNi41NzcsMi45NjZsLS45ODcuMzA5LDIuMDY1LDIuNDQ1LjQ0NS0uMTUzYTIyLjU1LDIyLjU1LDAsMCwwLDcuMS0zLjYyMiwyMS41ODksMjEuNTg5LDAsMCwwLDcuMDg5LDMuNTQ2bC40Ni4xNUw1Miw0Mi4yNzRaTTQyLjUsMzcuMDM2YTkuNjA5LDkuNjA5LDAsMCwxLTIuMTMxLTQuNjU4aDQuMjU0QTExLjgyMSwxMS44MjEsMCwwLDEsNDIuNSwzNy4wMzZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjUuNDQsMjkuNzc4aDMuMjMyTDIxLjksMTMuMjMzLDIxLjgwOSwxM0gxOS4wMTVMMTIuNTc2LDI5Ljc3OGgzLjA2bDEuNzYtNC44NTRoNi4xNzZabS03LjE1NC03LjMzMSwxLjU2Ny00LjJjLjIxNi0uNTg5LjQwNy0xLjE4MS41NjUtMS43NzMuMjA1LjYxMS40NTEsMS4yOTIuNzMyLDIuMDM4bDEuNDgyLDMuOTMzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQsNDlWMTNsOS4wMjctOUgzNi45ODJhMi45NjYsMi45NjYsMCwwLDEsMi4xMDkuODQ0QTIuODQ4LDIuODQ4LDAsMCwxLDM5Ljk4MSw3djZoLTNWN0gxNi4wMjZ2NmEyLjg0NCwyLjg0NCwwLDAsMS0uODkxLDIuMTU2LDMuMDc5LDMuMDc5LDAsMCwxLTIuMi44NDRIN1Y0OUgzNi45ODJWNDZoM3YzYTIuODg5LDIuODg5LDAsMCwxLTMsM0g3YTIuODg4LDIuODg4LDAsMCwxLTMtM1oiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-67"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu10-canary"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/9f73362817cd48339dd8a6acba160f7f/Cloud/en-US/c07bd4ee447b477b9ccb31b3abf5dae3.html"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"CFService":{"name":"document-translation","description":"Translate documents into multiple languages.","metadata":{"displayName":"Document Translation","longDescription":"Provides an API that allows you to translate documents of various formats into multiple languages."},"plans":[{"name":"Default","technicalName":"default","description":"Default service plan for Document Translation.","metadata":{"bullets":[]}},{"name":"Free","technicalName":"free","description":"Free service plan for Document Translation. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"CanaryServiceTests","displayName":"CanaryServiceTests","description":"CanaryServiceTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard5","displayName":"Standard4","description":"Standard4","uniqueIdentifier":"CanaryServiceTests-standard5","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard6","displayName":"Standard6","description":"Standard6","uniqueIdentifier":"CanaryServiceTests-standard6","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"ibanservice","displayName":"IBAN Service","description":"Check validity and get details of given IBAN number.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"ibanservice-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":0.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjE2Nzk3IDE5LjI0MTJDNC45MTc5NyAyMi4xMTYyIDQuMjkyOTcgMjUuMjEgNC4yOTI5NyAyOC41MjI1QzQuMjkyOTcgMjkuMDMxOSA0LjMwNzc1IDI5LjUzNjkgNC4zMzczMSAzMC4wMzc0QzQuNDA2MDkgMzEuMjAyIDUuNDA3MDQgMzIuMDU5NiA2LjU3MzYzIDMyLjA1OTZDOC4wNDQ2IDMyLjA1OTYgOS4xMzcxMSAzMC43MTcgOS4wODYzMiAyOS4yNDY5QzkuMDc4MTQgMjkuMDEwNCA5LjA3NDIxIDI4Ljc2OTggOS4wNzQyMSAyOC41MjI1QzkuMDc0MjEgMjcuODM1IDkuMTA1NDYgMjcuMjEgOS4xNjc5NiAyNi42NDc1QzkuMjMwNDYgMjYuMDIyNSA5LjMyNDIxIDI1LjM5NzUgOS40NDkyMSAyNC43NzI1SDE3LjY5OTJMMTcuNTExNyAyNi42NDc1QzE3LjQ0OTIgMjcuMjEgMTcuNDE4IDI3LjgzNSAxNy40MTggMjguNTIyNUMxNy40MTggMjkuMDc2MiAxNy40NDUxIDI5LjU5NjEgMTcuNDg2MiAzMC4xMTIzQzE3LjU3NDUgMzEuMjE5OSAxOC41MjM0IDMyLjA1OTYgMTkuNjM0NiAzMi4wNTk2QzIwLjk5MjggMzIuMDU5NiAyMi4wMDE0IDMwLjgyMDggMjEuOTM4OCAyOS40NjRDMjEuOTI0NyAyOS4xNTc3IDIxLjkxOCAyOC44NDU4IDIxLjkxOCAyOC41MjI1QzIxLjkxOCAyNy44MzUgMjEuOTQ5MiAyNy4yMSAyMi4wMTE3IDI2LjY0NzVDMjIuMDc0MiAyNi4wMjI1IDIyLjE2OCAyNS4zOTc1IDIyLjI5MyAyNC43NzI1SDMzLjYzNjdDMzMuODI0MiAyNS45NiAzMy45MTc5IDI3LjIxIDMzLjkxNzkgMjguNTIyNUMzMy45MTc5IDI4Ljg1MzkgMzMuOTExNCAyOS4xODUzIDMzLjg5ODIgMjkuNTE2N0MzMy44NDQ2IDMwLjg2NDUgMzQuODczMyAzMi4wNTk2IDM2LjIyMjEgMzIuMDU5NkMzNy4zNzA2IDMyLjA1OTYgMzguMzM2OSAzMS4xODMyIDM4LjM4NTIgMzAuMDM1OEMzOC40MDY1IDI5LjUyOTcgMzguNDE3OSAyOS4wMjM5IDM4LjQxNzkgMjguNTIyNUMzOC40MTc5IDI3LjgzNSAzOC4zODY3IDI3LjIxIDM4LjMyNDIgMjYuNjQ3NUMzOC4zMjQyIDI2LjAyMjUgMzguMjkyOSAyNS4zOTc1IDM4LjIzMDQgMjQuNzcyNUg0Ny4xMzY3QzQ3LjI2MTcgMjUuMzk3NSA0Ny4zNTU0IDI2LjAyMjUgNDcuNDE3OSAyNi42NDc1QzQ3LjQ4MDQgMjcuMjEgNDcuNTExNyAyNy44MzUgNDcuNTExNyAyOC41MjI1QzQ3LjUxMTcgMjguNzY5OCA0Ny41MDc3IDI5LjAxMDQgNDcuNDk5NiAyOS4yNDY5QzQ3LjQ0ODggMzAuNzE3IDQ4LjU0MTMgMzIuMDU5NiA1MC4wMTIzIDMyLjA1OTZDNTEuMTc4OSAzMi4wNTk2IDUyLjE3OTggMzEuMjAyIDUyLjI0ODYgMzAuMDM3NEM1Mi4yNzgxIDI5LjUzNjkgNTIuMjkyOSAyOS4wMzE5IDUyLjI5MjkgMjguNTIyNUM1Mi4yOTI5IDI1LjIxIDUxLjY2NzkgMjIuMTE2MiA1MC40MTc5IDE5LjI0MTJDNDkuMTY3OSAxNi4zMDM3IDQ3LjQ0OTIgMTMuNzQxMiA0NS4yNjE3IDExLjU1MzdDNDMuMDc0MiA5LjM2NjIxIDQwLjUxMTcgNy42NDc0NiAzNy41NzQyIDYuMzk3NDZDMzQuNjk5MiA1LjE0NzQ2IDMxLjYwNTQgNC41MjI0NiAyOC4yOTI5IDQuNTIyNDZDMjQuOTgwNCA0LjUyMjQ2IDIxLjg1NTUgNS4xNDc0NiAxOC45MTggNi4zOTc0NkMxNi4wNDMgNy42NDc0NiAxMy41MTE3IDkuMzY2MjEgMTEuMzI0MiAxMS41NTM3QzkuMTM2NzEgMTMuNzQxMiA3LjQxNzk3IDE2LjMwMzcgNi4xNjc5NyAxOS4yNDEyWk0zNC45NDkyIDE0LjY0NzVDMzQuMDExNyAxMi44OTc1IDMyLjkxNzkgMTEuMjQxMiAzMS42Njc5IDkuNjc4NzFDMzQuNzMwNCAxMC4xNzg3IDM3LjQ4MDQgMTEuMzY2MiAzOS45MTc5IDEzLjI0MTJDNDIuMzU1NCAxNS4xMTYyIDQ0LjI2MTcgMTcuNDYgNDUuNjM2NyAyMC4yNzI1SDM3LjI5MjlDMzYuNzMwNCAxOC4yNzI1IDM1Ljk0OTIgMTYuMzk3NSAzNC45NDkyIDE0LjY0NzVaTTI0LjE2NzkgOS43NzI0NkMyMS42MDU1IDEyLjg5NzUgMTkuNzYxNyAxNi4zOTc1IDE4LjYzNjcgMjAuMjcyNUgxMC45NDkyQzEyLjE5OTIgMTcuNjQ3NSAxMy45ODA1IDE1LjQyODcgMTYuMjkzIDEzLjYxNjJDMTguNjA1NSAxMS43NDEyIDIxLjIzMDUgMTAuNDYgMjQuMTY3OSA5Ljc3MjQ2Wk0yNy45MTc5IDEyLjExNjJDMjkuOTgwNCAxNC40Mjg3IDMxLjU0MjkgMTcuMTQ3NSAzMi42MDU0IDIwLjI3MjVIMjMuMzI0MkMyNC4zODY3IDE3LjIxIDI1LjkxNzkgMTQuNDkxMiAyNy45MTc5IDEyLjExNjJaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTQuMjkyOTcgMzYuODU5Nkg3LjM3MzkxVjUxLjU3NUg0LjI5Mjk3VjM2Ljg1OTZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEzNSkiLz4KPHBhdGggZD0iTTEwLjUyODkgMzYuODU5NkgxNi43MzI1QzE4LjUwMSAzNi44NTk2IDE5Ljg1MTggMzcuMTY5NSAyMC43ODQ3IDM3Ljc4OTFDMjEuNzE3NyAzOC40MDE4IDIyLjE4NDIgMzkuMzI0NCAyMi4xODQyIDQwLjU1NjdDMjIuMTg0MiA0MS40MDYyIDIxLjk0NzUgNDIuMTE2NCAyMS40NzQgNDIuNjg3M0MyMS4wMDc1IDQzLjI1MTMgMjAuMzExMyA0My42MzQyIDE5LjM4NTMgNDMuODM2MUMyMC40MjI3IDQzLjk3NTQgMjEuMjE5OSA0NC4zNTE0IDIxLjc3NjkgNDQuOTY0MUMyMi4zMzM5IDQ1LjU2OTggMjIuNjEyNCA0Ni4zNzc1IDIyLjYxMjQgNDcuMzg3QzIyLjYxMjQgNDguMzQwOSAyMi4zNjE4IDQ5LjEzMTIgMjEuODYwNSA0OS43NTc4QzIxLjM1OTIgNTAuMzc3NSAyMC42ODAzIDUwLjgzNyAxOS44MjM5IDUxLjEzNjRDMTguOTc0NSA1MS40Mjg4IDE4LjAxMDIgNTEuNTc1IDE2LjkzMSA1MS41NzVIMTAuNTI4OVYzNi44NTk2Wk0xNi4zODc5IDQyLjY5NzdDMTcuMzIwOSA0Mi42OTc3IDE4LjAwMzIgNDIuNTU1IDE4LjQzNDkgNDIuMjY5NUMxOC44NjY1IDQxLjk4NDEgMTkuMDgyNCA0MS41NDg5IDE5LjA4MjQgNDAuOTY0MUMxOS4wODI0IDQwLjM1ODMgMTguODc3IDM5LjkyNjYgMTguNDY2MiAzOS42NjlDMTguMDU1NCAzOS40MDQ0IDE3LjQyODggMzkuMjcyMiAxNi41ODYzIDM5LjI3MjJIMTMuNjA5OFY0Mi42OTc3SDE2LjM4NzlaTTE2LjY2OTkgNDkuMTQxNkMxNy41NjExIDQ5LjE0MTYgMTguMjU3MyA0OC45OTE5IDE4Ljc1ODYgNDguNjkyNUMxOS4yNTk5IDQ4LjM5MzEgMTkuNTEwNiA0Ny44NzA5IDE5LjUxMDYgNDcuMTI1OUMxOS41MTA2IDQ2LjQyMjcgMTkuMjYzNCA0NS45MjE0IDE4Ljc2OTEgNDUuNjIyQzE4LjI3NDcgNDUuMzE1NyAxNy42MDk4IDQ1LjE2MjUgMTYuNzc0MyA0NS4xNjI1SDEzLjYwOThWNDkuMTQxNkgxNi42Njk5WiIgZmlsbD0idXJsKCNwYWludDJfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxwYXRoIGQ9Ik0zMy40MiA0OC4wMjQxSDI3LjU5MjNMMjYuNDEyMiA1MS41NzVIMjMuMzMxMkwyOC42OTk0IDM2Ljg1OTZIMzIuMzMzOEwzNy42ODExIDUxLjU3NUgzNC42MDAyTDMzLjQyIDQ4LjAyNDFaTTMyLjY1NzYgNDUuNzE2TDMxLjE3NDYgNDEuMjY2OUMzMS4xNTM3IDQxLjE5NzMgMzAuOTU4NyA0MC41NjAyIDMwLjU4OTcgMzkuMzU1N0wzMC41MTY2IDM5LjEyNTlDMzAuNDc0OCAzOS4yNzkxIDMwLjM4NzggMzkuNTcxNSAzMC4yNTU1IDQwLjAwMzJDMzAuMTMwMiA0MC40Mjc5IDI5Ljk5NDQgNDAuODQ5MiAyOS44NDgyIDQxLjI2NjlMMjguMzY1MiA0NS43MTZIMzIuNjU3NloiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1KSIvPgo8cGF0aCBkPSJNMzkuNzE4NiAzNi44NTk2SDQzLjQ0N0w0OS41MzU4IDQ4LjEwNzdDNDkuNTI4OCA0Ny45NTQ1IDQ5LjUxMTQgNDcuNjEzMyA0OS40ODM2IDQ3LjA4NDJDNDkuNDYyNyA0Ni41NDggNDkuNDUyMiA0NS45OTEgNDkuNDUyMiA0NS40MTMxVjM2Ljg1OTZINTIuMjkzVjUxLjU3NUg0OC40NzA1TDQyLjQ5NjYgNDAuNDUyM0M0Mi41MDM2IDQwLjYwNTUgNDIuNTE3NSA0MC45MzYyIDQyLjUzODQgNDEuNDQ0NUM0Mi41NTkzIDQxLjk1MjcgNDIuNTY5NyA0Mi40MzY2IDQyLjU2OTcgNDIuODk2MlY1MS41NzVIMzkuNzE4NlYzNi44NTk2WiIgZmlsbD0idXJsKCNwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MzY1IDguNTY1NzMpIHJvdGF0ZSgzMC4xMTc5KSBzY2FsZSgzOC40MTkzIDYzLjAxNzgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50Ml9yYWRpYWxfMjAwM18yOTEzNSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS43MjU3IDM5LjA3MzMpIHJvdGF0ZSgxNy4wNDQpIHNjYWxlKDM0Ljk3MTUgMTcuODYxKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQzX3JhZGlhbF8yMDAzXzI5MTM1IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjcyNTcgMzkuMDczMykgcm90YXRlKDE3LjA0NCkgc2NhbGUoMzQuOTcxNSAxNy44NjEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDRfcmFkaWFsXzIwMDNfMjkxMzUiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuNzI1NyAzOS4wNzMzKSByb3RhdGUoMTcuMDQ0KSBzY2FsZSgzNC45NzE1IDE3Ljg2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-896"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/IBAN_SERVICE"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/iban-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"ibanservice","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"warehouse-insights","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights is a business application for the optimization of warehouse operations and resource utilizations. You can use this application to optimize the assignment of warehouse orders to resources to minimize empty travel distances, analyze KPIs of warehouse operations such as workload and travel distances of resources, and visualize the warehouse layout and resource travel routes.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"SAP Warehouse Insights","description":"SAP Warehouse Insights","uniqueIdentifier":"internal-warehouse-insights","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"internal-warehouse-insights-SYSTEM","productDisplayName":"SAP Warehouse Insights - SAP Warehouse Insights","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"test-and-demo","displayName":"Test and Demo","description":"For testing and demo","uniqueIdentifier":"warehouse-insights-test-and-demo","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/SAP_WAREHOUSE_INSIGHTS"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"}]}},{"name":"saas-registry","displayName":"SaaS Provisioning Service","description":"Service for application providers to register multitenant applications and services.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","uniqueIdentifier":"saas-registry-application","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}}},{"name":"SAPWorkZone","displayName":"SAP Build Work Zone, advanced edition","description":"Increase the productivity and engagement for your employees as well as interact with partners and customers in a multi-channel digital experience. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Create role based, multi-channel sites to access business apps and content.","uniqueIdentifier":"SAPWorkZone-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-standard-SYSTEM","productDisplayName":"SAP Work Zone - SAP Work Zone","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"advanced","displayName":"advanced","description":"Advanced test plan for SAP Build Work Zone","uniqueIdentifier":"SAPWorkZone-advanced","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPWorkZone-advanced-SYSTEM","productDisplayName":"SAPWorkZone - advanced","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLXdvcmstem9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA2ZGQ3O30uY2xzLTJ7ZmlsbDojMDAzYjc0O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00MywzMUg0MFYyOEgzN3Y5YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzNEEzLjAwOSwzLjAwOSwwLDAsMCw0MywzMVptMCw2SDQwVjM0aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMzguNXYtOUgxNnYzSDEzYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzQTMuMDA5LDMuMDA5LDAsMCwwLDE5LDM4LjVabS0zLDBIMTN2LTNoM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yMy41LDQzaC0zYTMuMDA5LDMuMDA5LDAsMCwwLTMsM3YzYTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YzN2gtM1ptMCw2aC0zVjQ2aDNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSw0MS41aC0zdi05aC0zdjE1YTMuMDA5LDMuMDA5LDAsMCwwLDMsM2gzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM3YtM0EzLjAwOSwzLjAwOSwwLDAsMCwzNS41LDQxLjVabTAsNmgtM3YtM2gzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjcsMjMuNDg4Yy41OCwwLDEuMDUtLjg3MywxLjA1LTEuOTQ5cy0uNDctMS45NS0xLjA1LTEuOTUtMS4wNS44NzMtMS4wNSwxLjk1UzI0LjExNiwyMy40ODgsMjQuNywyMy40ODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMywyMy40ODhjLjU4LDAsMS4wNS0uODczLDEuMDUtMS45NDlzLS40Ny0xLjk1LTEuMDUtMS45NS0xLjA1Ljg3My0xLjA1LDEuOTVTMzAuNzE2LDIzLjQ4OCwzMS4zLDIzLjQ4OFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCwyNi40ODhhMS41LDEuNSwwLDAsMCwxLjUtMS41aC0zQTEuNSwxLjUsMCwwLDAsMjgsMjYuNDg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ5LDEzSDQ2YTMuMDA5LDMuMDA5LDAsMCwwLTMsM3Y2Ljk5YS41MjYuNTI2LDAsMCwxLS41MS41MUg0MC41MWEuNTI2LjUyNiwwLDAsMS0uNTEtLjUxVjE1LjgyQTExLjg3NSwxMS44NzUsMCwwLDAsMjguMTIsNGgtLjI3QTExLjg2OSwxMS44NjksMCwwLDAsMTYsMTUuODJ2Ny4xN2EuNS41LDAsMCwxLS41MS40OEgxMy41MWEuNS41LDAsMCwxLS41MS0uNDhWMTNhMy4wMDksMy4wMDksMCwwLDAtMy0zSDdhMy4wMDksMy4wMDksMCwwLDAtMywzdjNhMy4wMDksMy4wMDksMCwwLDAsMywzaDN2My45OWEzLjQ4OSwzLjQ4OSwwLDAsMCwzLjUxLDMuNDhoMS45OEEzLjU0MiwzLjU0MiwwLDAsMCwxOSwyMi45OVYxNS44MmE4Ljg2Niw4Ljg2NiwwLDAsMSw4Ljg1LTguODVoLjI3YTguODA2LDguODA2LDAsMCwxLDUuMTg3LDEuNzA3QTEuNDg1LDEuNDg1LDAsMCwwLDMyLjUsOS45ODhhMS40ODcsMS40ODcsMCwwLDAsMi44MTIuNjg5QTguNzQ1LDguNzQ1LDAsMCwxLDM3LDE1LjgydjcuMTdhMy41LDMuNSwwLDAsMCwxLjcxLDMsMy40LDMuNCwwLDAsMCwxLjguNTFoMS45OEEzLjUxNCwzLjUxNCwwLDAsMCw0NiwyMi45OVYyMmgzYTMuMDA5LDMuMDA5LDAsMCwwLDMtM1YxNkEzLjAwOSwzLjAwOSwwLDAsMCw0OSwxM1pNMTAsMTZIN1YxM2gzWm0zOSwzSDQ2VjE2aDNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIzNC43NDYiIGN5PSIxMy43MzgiIHI9IjAuNzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjMwLjI0NiIgY3k9IjkuMjM4IiByPSIwLjc1Ii8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-491"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/WZ/Cloud/en-US"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"adsrestapi","displayName":"Forms Service by Adobe API","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Generate print and interactive forms using Adobe Document Services. Manage your form templates in the template store.","uniqueIdentifier":"adsrestapi-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-free-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard plan for ADS REST API","uniqueIdentifier":"adsrestapi-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"adsrestapi-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: RestAPI and Template Store - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://adsrestapi-formsprocessing.internal.cfapps.sap.hana.ondemand.com/swagger-ui.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"adsrestapi","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for ADS REST API","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad","displayName":"SAP Build Work Zone, standard edition ","description":"Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"SAPLaunchpad","uniqueIdentifier":"SAPLaunchpad-standard","provisioningMethod":"NONE_REQUIRED","amount":3.0,"remainingAmount":3.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"SAPLaunchpad-standard-SYSTEM","productDisplayName":"Launchpad - Launchpad","amount":3.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2NwLWxhdW5jaHBhZCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDAzYjc0O30uY2xzLTJ7ZmlsbDojMDA2ZGQ3O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSw3YTIuODg5LDIuODg5LDAsMCwxLDMsM1Y0MGEyLjk1OSwyLjk1OSwwLDAsMS0uODQ0LDIuMTA5QTIuODM3LDIuODM3LDAsMCwxLDQ5LDQzSDdhMi44NzEsMi44NzEsMCwwLDEtMi4xMDktLjg5MUEyLjg3NiwyLjg3NiwwLDAsMSw0LDQwVjEwYTIuODM0LDIuODM0LDAsMCwxLC44OTEtMi4xNTZBMi45NTQsMi45NTQsMCwwLDEsNyw3Wm0wLDNIN1Y0MEg0OVpNMzguNSw0NkExLjMyNywxLjMyNywwLDAsMSw0MCw0Ny41YTEuNTA5LDEuNTA5LDAsMCwxLS40MjIsMS4wMzFBMS4zODEsMS4zODEsMCwwLDEsMzguNSw0OWgtMjFBMS42MTQsMS42MTQsMCwwLDEsMTYsNDcuNWExLjM4MSwxLjM4MSwwLDAsMSwuNDY5LTEuMDc4QTEuNTA1LDEuNTA1LDAsMCwxLDE3LjUsNDZaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxMCIgeT0iMTMiIHdpZHRoPSIxNi41MTUiIGhlaWdodD0iMTUiIHJ4PSIxLjI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyOS41IiB5PSIxMyIgd2lkdGg9IjE2LjUiIGhlaWdodD0iNiIgcng9IjEuMjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEwIiB5PSIzMSIgd2lkdGg9IjYuNzMiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTkuNzY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjMxIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIzMSIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjI5LjUiIHk9IjIyIiB3aWR0aD0iNi43MzUiIGhlaWdodD0iNiIgcng9IjAuNSIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMzkuMjY1IiB5PSIyMiIgd2lkdGg9IjYuNzM1IiBoZWlnaHQ9IjYiIHJ4PSIwLjUiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-509"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"SAPLaunchpad","description":"Simplify access to applications by establishing a central entry point.","metadata":{"displayName":"SAP Build Work Zone, standard edition "},"plans":[{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked below.","metadata":{"bullets":[]}}]}}},{"name":"connectivity-central","displayName":"Connectivity (for scale-out build-out)","description":"Pair Connectivity Proxy with SAP CP Connectivity service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service","uniqueIdentifier":"connectivity-central-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"connectivity-central-connectivity_proxy-SYSTEM","productDisplayName":"Connectivity (for scale-out build-out) - connectivity_proxy","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder","displayName":"API Management, developer portal","description":"API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. A Developer Portal application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"API Management, developer portal","description":"API Management, developer portal","uniqueIdentifier":"api-management-devportal-stakeholder-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"api-management-devportal-stakeholder-standard-SYSTEM","productDisplayName":"API Management, developer portal - API Management, developer portal","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXBpLW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwaS1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMS44NzgsMzEuMzY4YTE0LjMxNywxNC4zMTcsMCwwLDEtMi42MTgtMS41TDIzLjQ1MSwzNy41NWE3LjY1NSw3LjY1NSwwLDAsMC0yLjkwNS0uNTYyLDcuNSw3LjUsMCwxLDAsNy41LDcuNSw3LjA2LDcuMDYsMCwwLDAtMi4xNTYtNS4yNDdaTTIwLjU0Niw0OC45ODRhNC41LDQuNSwwLDEsMSw0LjUtNC41QTQuNDQxLDQuNDQxLDAsMCwxLDIwLjU0Niw0OC45ODRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTksMjYuNjhjMC0uMjgyLDAtLjU2My0uMDk0LS42NTdsNi0xLjIxOC0uMDM0LS4wODdjLS40LS44LS42ODQtMi4wNDQtMS0yLjg1bC0uMDg5LjAzMi01LjcxNywxLjIxOGE3LjQsNy40LDAsMCwwLTYuNTYtNC4wM0E3LjU0LDcuNTQsMCwwLDAsNCwyNi42OGE3LjQzOSw3LjQzOSwwLDAsMCw3LjUsNy40QTcuNDQsNy40NCwwLDAsMCwxOSwyNi42OFptLTcuNSw0LjRBNC4zNjMsNC4zNjMsMCwwLDEsNywyNi42OGE0LjUsNC41LDAsMSwxLDksMEE0LjM2NCw0LjM2NCwwLDAsMSwxMS41LDMxLjA4NFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00NC45NTQsMzYuOTg4aC0uOTM3TDQyLjYxMSwzMS43NGExNC4zNjgsMTQuMzY4LDAsMCwxLTIuOTE5Ljc1NWwxLjQyLDUuMzM3YTcuNDc0LDcuNDc0LDAsMCwwLDIuOTA1LDE0LjE1MSw3LjUxMiw3LjUxMiwwLDEsMCwuOTM3LTE0Ljk5NVptNC4wMyw3Ljc3OWE0LjU2OCw0LjU2OCwwLDAsMS00Ljc4LDQuMjE3LDQuNTA3LDQuNTA3LDAsMSwxLDQuNzgtNC4yMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEuODM0LDMxLjM2NWExNC4xNjgsMTQuMTY4LDAsMCwwLDUuODEsMS4zMTIsMTQuMTM4LDE0LjEzOCwwLDAsMCwyLjA2Mi0uMTg3djBhMTQuMzIyLDE0LjMyMiwwLDEsMC0xNi40LTE0LjE1MywxNi4xODUsMTYuMTg1LDAsMCwwLC40NjksMy41NjFsLjEwOC40NDRhMTIuOTQ0LDEyLjk0NCwwLDAsMCwuOTgzLDIuMzc0bC4wMzQuMDg3YTE0LjEzMiwxNC4xMzIsMCwwLDAsNC4zMTEsNS4wNjFoMEExNC4zNjMsMTQuMzYzLDAsMCwwLDMxLjgzNCwzMS4zNjVabTMtNi44NDFoNS43MTZhMTEuNjY1LDExLjY2NSwwLDAsMS0yLjkwNSw0LjRBMTEuMTQ4LDExLjE0OCwwLDAsMSwzNC44MzMsMjQuNTI0Wm0tLjc1LTIuOTA1YTEyLjU5MSwxMi41OTEsMCwwLDEtLjM3NS0zLjI4LDE0LjU4OCwxNC41ODgsMCwwLDEsLjI4MS0yLjkwNmg3LjRjLjA5NCwxLjAzMS4xODcsMS44NzUuMTg3LDIuOTA2YTE3Ljc4MywxNy43ODMsMCwwLDEtLjI4MSwzLjI4Wm01LjUyOSw3Ljk2NWExNC43MjIsMTQuNzIyLDAsMCwwLDIuODEyLTUuMDZINDcuM0ExMS45LDExLjksMCwwLDEsMzkuNjEyLDI5LjU4NFpNNDguNywxNS40MzNhOS4xMjEsOS4xMjEsMCwwLDEsLjM3NCwyLjkwNiwxMy44NTcsMTMuODU3LDAsMCwxLS40NjgsMy4yOEg0My4wOGExNy44NywxNy44NywwLDAsMCwuMjgxLTMuMjhjMC0xLjAzMS0uMDk0LTEuODc1LS4xODctMi45MDZabS0xLjIxOS0yLjgxMUg0Mi41MTdhMTIuNjA1LDEyLjYwNSwwLDAsMC0zLTUuNTNBMTEuNjgxLDExLjY4MSwwLDAsMSw0Ny40ODQsMTIuNjIyWm0tNi44NDEsMGgtNS45YTEyLjQ1NSwxMi40NTUsMCwwLDEsMi45MDUtNC45NjdBMTEuNDA3LDExLjQwNywwLDAsMSw0MC42NDMsMTIuNjIyWk0zNS43Nyw3LjA5MmExNi4xMSwxNi4xMSwwLDAsMC0zLDUuNTNIMjcuOEExMS44ODksMTEuODg5LDAsMCwxLDM1Ljc3LDcuMDkyWm0tOSwxNC41MjdhOS4yNyw5LjI3LDAsMCwxLS41NjItMy4yOCwxMC4zMTksMTAuMzE5LDAsMCwxLC4zNzQtMi45MDZoNS42MjRhMTQuNTE0LDE0LjUxNCwwLDAsMC0uMjgyLDIuOTA2LDE3Ljc3OSwxNy43NzksMCwwLDAsLjI4MiwzLjI4Wm0xLjMxMiwyLjkwNWg0Ljc4YTE2LjQ1MiwxNi40NTIsMCwwLDAsMi44MTEsNS4wNkExMS43LDExLjcsMCwwLDEsMjguMDg1LDI0LjUyNFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.hana.ondemand.com/apim_od/frameset.htm"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"dateandtime","displayName":"Date and Time","description":"Get default date format for a given country, timezone details and time difference between two provided time values.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"dateandtime-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMjQpIj4KPHBhdGggZD0iTTE3LjEyNSAyMS40Mzc0QzE4LjU2MjUgMjEuNDM3NCAxOS4yODEyIDIyLjE1NjIgMTkuMjgxMiAyMy41OTM3QzE5LjI4MTIgMjUuMDMxMiAxOC41NjI1IDI1Ljc0OTkgMTcuMTI1IDI1Ljc0OTlIMTAuNTYyNVY0MS4wMzEyQzEwLjU2MjUgNDIuNDY4NyAxMS4yODEyIDQzLjE4NzQgMTIuNzE4NyA0My4xODc0SDE2LjcyNkMxNy40MTM1IDQzLjE4NzQgMTcuOTQ0OCA0My40MDYyIDE4LjMxOTggNDMuODQzN0MxOC42OTQ4IDQ0LjIxODcgMTguODgyMyA0NC43MTg3IDE4Ljg4MjMgNDUuMzQzN0MxOC44ODIzIDQ2LjAzMTIgMTguNjk0OCA0Ni41OTM3IDE4LjMxOTggNDcuMDMxMkMxNy45NDQ4IDQ3LjQwNjIgMTcuNDEzNSA0Ny41OTM3IDE2LjcyNiA0Ny41OTM3SDEyLjcxODdDMTAuOTA2MiA0Ny41OTM3IDkuMzc1IDQ2Ljk2ODcgOC4xMjUgNDUuNzE4N0M2Ljg3NSA0NC40MDYyIDYuMjUgNDIuODQzNyA2LjI1IDQxLjAzMTJWMTQuODc0OUM2LjI1IDEzLjA2MjQgNi44NzUgMTEuNTMxMiA4LjEyNSAxMC4yODEyQzkuMzc1IDkuMDMxMTkgMTAuOTA2MiA4LjQwNjE5IDEyLjcxODcgOC40MDYxOUgxNy4xMjVWNi4xNTYxOUMxNy4xMjUgNC43MTg2OSAxNy44NDM3IDMuOTk5OTQgMTkuMjgxMiAzLjk5OTk0QzIwLjcxODcgMy45OTk5NCAyMS40Mzc1IDQuNzE4NjkgMjEuNDM3NSA2LjE1NjE5VjguNDA2MTlIMzAuMTU2MlY2LjE1NjE5QzMwLjE1NjIgNC43MTg2OSAzMC44NzUgMy45OTk5NCAzMi4zMTI1IDMuOTk5OTRDMzMgMy45OTk5NCAzMy41MzEyIDQuMTg3NDQgMzMuOTA2MiA0LjU2MjQ0QzM0LjM0MzcgNC45Mzc0NCAzNC41NjI1IDUuNDY4NjkgMzQuNTYyNSA2LjE1NjE5VjguNDA2MTlIMzguODc1QzQwLjc1IDguNDA2MTkgNDIuMzEyNSA5LjAzMTE5IDQzLjU2MjUgMTAuMjgxMkM0NC44MTI1IDExLjUzMTIgNDUuNDM3NSAxMy4wNjI0IDQ1LjQzNzUgMTQuODc0OVYxNi4wNjdDNDUuNDM3NSAxNi42OTIgNDUuMjE4NyAxNy4yMjMyIDQ0Ljc4MTIgMTcuNjYwN0M0NC40MDYyIDE4LjAzNTcgNDMuOTA2MiAxOC4yMjMyIDQzLjI4MTIgMTguMjIzMkM0Mi41OTM3IDE4LjIyMzIgNDIuMDMxMiAxOC4wMzU3IDQxLjU5MzcgMTcuNjYwN0M0MS4yMTg3IDE3LjIyMzIgNDEuMDMxMiAxNi42OTIgNDEuMDMxMiAxNi4wNjdWMTQuODc0OUM0MS4wMzEyIDEzLjQzNzQgNDAuMzEyNSAxMi43MTg3IDM4Ljg3NSAxMi43MTg3SDM0LjU2MjVWMTQuODc0OUMzNC41NjI1IDE1LjU2MjQgMzQuMzQzNyAxNi4xMjQ5IDMzLjkwNjIgMTYuNTYyNEMzMy41MzEyIDE2LjkzNzQgMzMgMTcuMTI0OSAzMi4zMTI1IDE3LjEyNDlDMzEuNjI1IDE3LjEyNDkgMzEuMDkzNyAxNi45Mzc0IDMwLjcxODcgMTYuNTYyNEMzMC4zNDM3IDE2LjEyNDkgMzAuMTU2MiAxNS41NjI0IDMwLjE1NjIgMTQuODc0OVYxMi43MTg3SDIxLjQzNzVWMTQuODc0OUMyMS40Mzc1IDE1LjU2MjQgMjEuMjUgMTYuMTI0OSAyMC44NzUgMTYuNTYyNEMyMC41IDE2LjkzNzQgMTkuOTY4NyAxNy4xMjQ5IDE5LjI4MTIgMTcuMTI0OUMxOC41OTM3IDE3LjEyNDkgMTguMDYyNSAxNi45Mzc0IDE3LjY4NzUgMTYuNTYyNEMxNy4zMTI1IDE2LjEyNDkgMTcuMTI1IDE1LjU2MjQgMTcuMTI1IDE0Ljg3NDlWMTIuNzE4N0gxMi43MTg3QzExLjI4MTIgMTIuNzE4NyAxMC41NjI1IDEzLjQzNzQgMTAuNTYyNSAxNC44NzQ5VjIxLjQzNzRIMTcuMTI1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzcuMDQ2MSAyMS45OTk5QzM5LjEzODUgMjEuOTk5OSA0MS4wNzY5IDIyLjM5OTkgNDIuODYxNSAyMy4xOTk5QzQ0LjcwNzcgMjMuOTM4NCA0Ni4zMDc3IDI0Ljk4NDYgNDcuNjYxNSAyNi4zMzg0QzQ5LjAxNTQgMjcuNjkyMiA1MC4wNjE1IDI5LjI5MjIgNTAuOCAzMS4xMzg0QzUxLjYgMzIuOTg0NiA1MiAzNC45NTM4IDUyIDM3LjA0NjFDNTIgMzkuMTM4NCA1MS42IDQxLjEwNzYgNTAuOCA0Mi45NTM4QzUwLjA2MTUgNDQuNzM4NCA0OS4wMTU0IDQ2LjMwNzYgNDcuNjYxNSA0Ny42NjE1QzQ2LjMwNzcgNDkuMDE1MyA0NC43MDc3IDUwLjA2MTUgNDIuODYxNSA1MC43OTk5QzQxLjA3NjkgNTEuNTk5OSAzOS4xMzg1IDUxLjk5OTkgMzcuMDQ2MSA1MS45OTk5QzM0Ljk1MzggNTEuOTk5OSAzMi45ODQ2IDUxLjU5OTkgMzEuMTM4NSA1MC43OTk5QzI5LjI5MjMgNTAuMDYxNSAyNy42OTIzIDQ5LjAxNTMgMjYuMzM4NSA0Ny42NjE1QzI0Ljk4NDYgNDYuMzA3NiAyMy45MDc3IDQ0LjczODQgMjMuMTA3NyA0Mi45NTM4QzIyLjM2OTIgNDEuMTA3NiAyMiAzOS4xMzg0IDIyIDM3LjA0NjFDMjIgMzQuOTUzOCAyMi4zNjkyIDMyLjk4NDYgMjMuMTA3NyAzMS4xMzg0QzIzLjkwNzcgMjkuMjkyMiAyNC45ODQ2IDI3LjY5MjIgMjYuMzM4NSAyNi4zMzg0QzI3LjY5MjMgMjQuOTg0NiAyOS4yOTIzIDIzLjkzODQgMzEuMTM4NSAyMy4xOTk5QzMyLjk4NDYgMjIuMzk5OSAzNC45NTM4IDIxLjk5OTkgMzcuMDQ2MSAyMS45OTk5Wk00MS4yNDA2IDM2LjE5NUM0MS43MzY4IDM2LjE5NSA0Mi4xNDI4IDM2LjM5MDEgNDIuNDU4NiAzNi43ODA0QzQyLjgxOTUgMzcuMTIxOCA0MyAzNy41NjA5IDQzIDM4LjA5NzRDNDMgMzguNjM0IDQyLjgxOTUgMzkuMDk3NCA0Mi40NTg2IDM5LjQ4NzdDNDIuMTQyOCAzOS44MjkyIDQxLjczNjggMzkuOTk5OSA0MS4yNDA2IDM5Ljk5OTlIMzUuNzU5NEMzNS4yNjMyIDM5Ljk5OTkgMzQuODM0NiAzOS44MjkyIDM0LjQ3MzcgMzkuNDg3N0MzNC4xNTc5IDM5LjA5NzQgMzQgMzguNjM0IDM0IDM4LjA5NzRWMjkuODI5MkMzNCAyOS4yOTI2IDM0LjE1NzkgMjguODUzNSAzNC40NzM3IDI4LjUxMjFDMzQuODM0NiAyOC4xNzA2IDM1LjI2MzIgMjcuOTk5OSAzNS43NTk0IDI3Ljk5OTlDMzYuMjU1NiAyNy45OTk5IDM2LjY2MTYgMjguMTcwNiAzNi45Nzc0IDI4LjUxMjFDMzcuMjkzMiAyOC44NTM1IDM3LjQ1MTEgMjkuMjkyNiAzNy40NTExIDI5LjgyOTJWMzYuMTk1SDQxLjI0MDZaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTEyNCkiLz4KPC9nPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkxMjQiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIuMzE4MSAxMC41NTc5KSByb3RhdGUoNDguMDQ2OSkgc2NhbGUoNDAuODMxOCAzNi45OTgyKSI+CjxzdG9wIHN0b3AtY29sb3I9IiMxMzQ4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDYyMzhEIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQxX3JhZGlhbF8yMDAzXzI5MTI0IiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjY1MjIgMjYuNDA0OCkgcm90YXRlKDQ1LjMxODEpIHNjYWxlKDI5LjUzODEgNTUuODEwMSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkxMjQiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-894"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/DATE_AND_TIME"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/date-and-time"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"dateandtime","plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"uas","displayName":"uas","description":"reporting-internal allows to send usage to uas-reporting","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"reporting-ga-admin","displayName":"reporting-ga-admin","description":"Allows viewing global account usage information","uniqueIdentifier":"uas-reporting-ga-admin","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"reporting-directory","displayName":"reporting-directory","description":"Allows viewing directory usage information","uniqueIdentifier":"uas-reporting-directory","provisioningMethod":"SERVICE_BROKER","amount":10,"remainingAmount":10.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"aws-rds-postgresql","displayName":"PostgreSQL on Amazon (AWS)","description":"PostgreSQL on Amazon (AWS)","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":null,"termsOfUseUrl":null,"servicePlans":[{"name":"development","displayName":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","description":"AWS RDS PostgreSQL burstable performance instances, suitable for development/non-productive usage","uniqueIdentifier":"aws-rds-postgresql-development","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true},{"name":"production","displayName":"AWS RDS PostgreSQL standard instances, suitable for productive usage","description":"AWS RDS PostgreSQL standard instances, suitable for productive usage","uniqueIdentifier":"aws-rds-postgresql-production","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":null,"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":[{"resourceType":"IAAS_ACCOUNT","resourceProvider":"AWS","resourceTechnicalName":"tf_test_resource_provider","resourceName":"Test AWS Resource Provider","resourceData":{}}],"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":[],"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":null,"applicationCoordinates":null},{"name":"mobile-services","displayName":"Mobile Services","description":"Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. This includes native build apps, MDK and SAP Mobile Cards. You need this to run apps based on the SAP Cloud Platform SDK for iOS. Get started by clicking on the Support link below.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Build and run mobile apps for B2E and B2B use cases.","uniqueIdentifier":"mobile-services-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"mobile-services-standard-SYSTEM","productDisplayName":"Mobile Services - Build and run mobile apps for B2E and B2B use cases.","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"managed-html5-apps-repo","displayName":"Instance Manager HTML5 Apps Repository","description":"Enables storage of HTML5 applications and provides runtime environment for HTML5 applications.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"managed-html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"managed-html5-apps-repo-app-host-SYSTEM","productDisplayName":"Instance Manager HTML5 Apps Repository - app-host","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"devhubservice","displayName":"Developer Hub","description":"Drives innovation in modern business models.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Obtain the service key required to access Developer Hub.","uniqueIdentifier":"devhubservice-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"alert-notification","displayName":"Alert Notification","description":"SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allows production & consumption of custom events","uniqueIdentifier":"alert-notification-lite","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-lite-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"standard","description":"Allows production & consumption of custom events","uniqueIdentifier":"alertnotificationservicecf","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alertnotificationservicecf-SYSTEM","productDisplayName":"alertnotificationservicecf-SYSTEM","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false},{"entitlementName":"alert-notification-standard-SYSTEM","productDisplayName":"Alert Notification - Alert Notification","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"free","displayName":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"alert-notification-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"alert-notification-free-SYSTEM","productDisplayName":"Alert Notification - free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWxlcnQtbm90aWZpY2F0aW9uIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hbGVydC1ub3RpZmljYXRpb248L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTM5LjQ3MSwyOS42ODFsLTIuNzQzLDEuNTEzQTE0Ljk4OCwxNC45ODgsMCwxLDEsMjIuMDEsMTguOTc2Yy4wMTIsMCwuMDIzLDAsLjAzNCwwdi0zbC0uMDM0LDBBMTguMDkxLDE4LjA5MSwwLDEsMCwzOS40NzEsMjkuNjgxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjEwOCw0My4yMzNsLjItLjkyMy4xMzItLjQsMy4xLTMuMDM2VjM2LjVsLTEuMjUzLTEuMDU2TDE4LDM0Ljk4NWwtLjc5Mi0uNTI3LjA2Ni0uOTI0LS43MjUtLjc5Mi44NTctLjkyNC41OTQuMjY0LjItLjRoMS4zODVsLjI2NCwxLjEyMmguNTI3bC0uMjY0LTEuMTIyLDEuNzE1LS44NTctLjMzLS42Ni44NTctLjA2Ni0uNC0uMzMuNTkzLS41OTQtLjUyNy0uODU4di0uNTI3bC0xLjE4Ny43OTEtLjMzLjUyOC0uNTkzLS4wNjZ2LS43MjZMMjAuOTY2LDI3LjJsLS40LS45OS0xLjg0Ni0uMTMyLTEuMDU1LDEuMDU2TDE2LjM1LDI2Ljg3bDEuMDU1LTIuMzc2YS4zLjMsMCwwLDEtLjItLjMyOS4yNjIuMjYyLDAsMCwxLC4wNjYtLjIsMi40LDIuNCwwLDAsMS0xLjIyLS40MjksMi40NjQsMi40NjQsMCwwLDAtMS4yODUtLjQyOSwyLjM3NiwyLjM3NiwwLDAsMC0xLjEyMS40NjIsMTIuMzQ4LDEyLjM0OCwwLDAsMC0xLjQ4NCwxLjEyMiwxMC42MjMsMTAuNjIzLDAsMCwwLTEuMzE4LDEuMzUyLDIuMDE3LDIuMDE3LDAsMCwwLS41NjEsMS4wODlsLjI2NC43MjYsMS4xODcuNzI1LjQsMS4zMi0uMiwxLjcxNi45OSwxLjk3OS40NjEtLjItLjcyNS0xLjMyLjQ2MS41MjguNDYyLjMzYTMuODY1LDMuODY1LDAsMCwwLDIuODM1LDEuMTg4bC43MjUuOTI0TDE1LjQ5MywzNy4xbDEuODQ2LDEuNjQ5cS4yLDEuMTg4LjMsMi4xNzhhMTAuNzA3LDEwLjcwNywwLDAsMCwuMywxLjcxNWwuNzI2LDEuNjUuNTkzLDEuMzJhLjUyLjUyLDAsMCwxLC4zMy0uMDY2bC4yNjQtLjI2NGEuMzE4LjMxOCwwLDAsMC0uMDMzLS4xMzIuMjgzLjI4MywwLDAsMS0uMDMzLS4xMzJsLjA2Ni0uNzkyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjU0OCwyNS4wODhhLjkwOS45MDksMCwwLDEsLjY1OS4yLDEuMTgsMS4xOCwwLDAsMSwuNzI1LS4yYzAtLjA0My4wNzcuMTMyLjIzMS41MjhzLjM2My41OTQuNjI3LjU5NGwuNTkzLS40LjUyOC0uODU4LjQyNy0uNjg0YTIuOSwyLjksMCwwLDEtMS40MzktMS42OGMtLjE3OC4xMTMtLjM4MS4yMjYtLjU1LjMzOWE1Ljc1NSw1Ljc1NSwwLDAsMC0xLjE0Mi45Nyw5LjQzLDkuNDMsMCwwLDAtMS4wNTUsMS4yNTMuNDUxLjQ1MSwwLDAsMCwuMi0uMDMzQS40NTQuNDU0LDAsMCwxLDIyLjU0OCwyNS4wODhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzEuMjUxLDM1Ljk3NWwuOTIzLDEuNTE4LjEzMi41OTR2LjUyOGExMi44ODYsMTIuODg2LDAsMCwxLS4yLDIuMjQzLDEwLjc5MywxMC43OTMsMCwwLDAtLjIsMS43MTVxMCwuNDYyLjIuNDYyLjkyMS0xLjkxNCwxLjkxMy0zLjk5MmExMC4zODMsMTAuMzgzLDAsMCwwLC45ODgtNC41MTksMTUuOTc3LDE1Ljk3NywwLDAsMC0uMTMxLTEuODE1LDEuNiwxLjYsMCwwLDAtLjkyMy0xLjQxOGMtLjIyMS0uMDQ0LS40NTItLjA4OS0uNjkzLS4xMzJhMy44OTIsMy44OTIsMCwwLDAtLjY5Mi0uMDY2LDMuMzQzLDMuMzQzLDAsMCwwLS40OTUuMDMzLDMuMDMzLDMuMDMzLDAsMCwxLS40MjguMDMzLjQ0Ni40NDYsMCwwLDEtLjMzLS4xMzIsNi41LDYuNSwwLDAsMS0xLjYxNS41NjFjLS40MTguMDY2LS44LjE0Mi0xLjE1NC4yM0wyOC4wODYsMzRsLjY2LDEuMzg2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUwLjIwOSw1Ljc4M0E1Ljc3NCw1Ljc3NCwwLDAsMCw0NS45OSw0aC0xNWE1Ljc2NCw1Ljc2NCwwLDAsMC00LjIxOSwxLjc4M0E1Ljc3MSw1Ljc3MSwwLDAsMCwyNC45OSwxMHY5LjAwN2E1LjcxOCw1LjcxOCwwLDAsMCwxLjc4MSw0LjI2OSw1LjgzNSw1LjgzNSwwLDAsMCw0LjIxOSwxLjczNXYyLjYyN0ExLjcsMS43LDAsMCwwLDMxLjYsMjlhMi4wNTgsMi4wNTgsMCwwLDAsMS4zNi41MTUsMS45LDEuOSwwLDAsMCwxLjIxOC0uMzc1bDcuMzEzLTQuMDM0LDQuNS0uMDk0YTUuODQ1LDUuODQ1LDAsMCwwLDQuMjE5LTEuNzM1LDUuNzI5LDUuNzI5LDAsMCwwLDEuNzgxLTQuMjY5VjEwQTUuNzgyLDUuNzgyLDAsMCwwLDUwLjIwOSw1Ljc4M1pNNDguOTksMTkuMDExYTIuODg5LDIuODg5LDAsMCwxLTMsM2wtNiwuMDk0LTYsMi45MDh2LTNoLTNhMi45NTIsMi45NTIsMCwwLDEtMi4xMDktLjg0NCwyLjgzNywyLjgzNywwLDAsMS0uODkxLTIuMTU4VjEwYTMuMDQ1LDMuMDQ1LDAsMCwxLDMtM2gxNWEyLjg0NSwyLjg0NSwwLDAsMSwyLjE1Ni44OTJBMi45NjYsMi45NjYsMCwwLDEsNDguOTksMTBaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksMTcuNDc0YTEuMzgzLDEuMzgzLDAsMCwwLTEuMDg0LjQ1OEExLjUwNywxLjUwNywwLDAsMCwzNywxOC45NjlhMS41NDQsMS41NDQsMCwwLDAsLjQxLDEuMTA5LDEuNTcxLDEuNTcxLDAsMCwwLDIuMTY4LDAsMS41NTIsMS41NTIsMCwwLDAsLjQxLTEuMTA5LDEuNTE2LDEuNTE2LDAsMCwwLS40MS0xLjAzN0ExLjM4NywxLjM4NywwLDAsMCwzOC40OSwxNy40NzRaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNDksOC41YTEuNDIsMS40MiwwLDAsMC0xLjA4NC40MzQsMS41NDYsMS41NDYsMCwwLDAtLjQxLDEuMTFsLjcyMyw1LjI1NmMuMDYzLjM4Ni4xNi42Mi4yODkuN2EuOS45LDAsMCwwLC40ODIuMTJBLjc2Ni43NjYsMCwwLDAsMzksMTUuOTc5YTEuMjQzLDEuMjQzLDAsMCwwLC4yNjUtLjY3NmwuNzIzLTUuMjU2YTEuNTU1LDEuNTU1LDAsMCwwLS40MS0xLjExQTEuNDI0LDEuNDI0LDAsMCwwLDM4LjQ5LDguNVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","providerAccountNames":["CLM SL Alert Notification Service"],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"SAP Cloud Platform Alert Notification @SAP Help Portal","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/ALERT_NOTIFICATION"},{"title":"Buy Now (CPEA)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://controlcenter.ondemand.com/index.html"},{"title":"Buy Now (Subscription-based)","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/47001/SAP-Alert-Notification-service-for-SAP-BTP"},{"title":"SAP Cloud Platform Alert Notification @SAP Community","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://blogs.sap.com/tags/73555000100800001401/"},{"title":"SAP Cloud Platform Alert Notification @SAP API Business Hub","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://api.sap.com/package/AlertNotification?section=Artifacts"},{"title":"SAP Cloud Platform Alert Notification @SAP Media Share","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://video.sap.com/embedplaylist/secure/embed/playlistId/1_qo955uqi/v2/0/uiConfId/29075341"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu1-trial"},{"key":"neo-eu1-staging"},{"key":"neo-eu1-canary"},{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-jp1"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-sa1"},{"key":"neo-ae1"},{"key":"neo-br1"},{"key":"neo-cn1"},{"key":"neo-ru1"},{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-eu20"},{"key":"cf-us10"},{"key":"cf-jp10"},{"key":"cf-ap11"},{"key":"cf-ap10"},{"key":"cf-ca10"},{"key":"cf-br10"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-jp20"},{"key":"cf-eu12"},{"key":"cf-ap20"},{"key":"cf-eu30"},{"key":"cf-ch20"},{"key":"cf-eu21"},{"key":"cf-in30"},{"key":"cf-us31"}],"CFService":{"id":"66c46141-e003-474e-8c3e-9f98fa43e418","description":"Create and receive real-time alerts about your services","name":"alert-notification","metadata":{"displayName":"Alert Notification"},"bindable":true,"plan_updateable":false,"plans":[{"technicalName":"standard","description":"Allows production & consumption of custom events","name":"standard","metadata":{"bullets":["500 Producer API calls per minute","360 Consumer API calls per minute","100 registered actions","500 registered conditions","100 registered subscriptions"]}},{"technicalName":"free","name":"free","description":"Free plan. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","description":"Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"free","uniqueIdentifier":"mdo-one-mds-master-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"workcalendar","displayName":"Work Calendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"default","description":"Default Plan","uniqueIdentifier":"workcalendar-default","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-895"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/WORK_CALENDAR"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/work-calendar"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu12"}],"CFService":{"name":"workcalendar","description":"Get details of factory calendar such as weekday, holiday, workday for a country.","metadata":{"displayName":"Work Calendar"},"plans":[{"technicalName":"default","name":"default","description":"Default Plan","metadata":{}}]}}},{"name":"iag_service_bridge","displayName":"IAG Service for Bridge","description":"IAG Service for Bridge","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"IAG Broker for Bridge","description":"IAG Broker for Bridge","uniqueIdentifier":"iag_service_bridge-standard","provisioningMethod":"SERVICE_BROKER","amount":12,"remainingAmount":12.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"data-intelligence","displayName":"SAP Data Intelligence","description":"SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"tenant","displayName":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","uniqueIdentifier":"data-intelligence-tenant","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGF0YS1pbnRlbGxpZ2VuY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhdGEtaW50ZWxsaWdlbmNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01MS4yNTEsMzEuMjY4cy0yLjMyOS00LjEtMy4wODQtNS41MTh2LS4xYy4wMjQtMS43NTIuMDY4LTUuMDE2LTEuMjYzLTcuNzYxLTEuMDM0LTIuMTMtNC4xODEtOC42MTMtMTQuMTI4LTguNjEzbC0uNS4wMDZjLTguMTc0LjE3Ni0xMS44ODIsNi43MzMtMTIuOTE5LDguOTk1aC0yLjdsLTYuMjQzLTcuMjI2YTMuMzI5LDMuMzI5LDAsMCwxLTIuMzgsMS44M2w2LjgwNSw3Ljg3N2ExLjUsMS41LDAsMCwwLDEuMTMzLjUxOWgyLjU4MWEyMC44MTMsMjAuODEzLDAsMCwwLS4zLDIuOTg4aC0uMzA2Yy0uMDE2LDAtLjAyOC0uMDA5LS4wNDQtLjAwOUgxMy40NzJMOS45MDYsMjEuNzA1YTIuOTUyLDIuOTUyLDAsMCwxLTEuODU1LDIuMzQxYy4wMjcuMDIzLjA0Mi4wNTUuMDcxLjA3NmwyLjMzNywxLjY3TDguMTc1LDI3LjUwOUEyLjk3MiwyLjk3MiwwLDAsMSw5LjkzLDI5Ljk0MmwzLjU2Mi0yLjY3Nmg0Ljk4MWExMy45NzIsMTMuOTcyLDAsMCwwLC44NTQsM0gxNS45NzFhMS41LDEuNSwwLDAsMC0xLjEzMy41MTlsLTYuNzkxLDcuODZhMy4zMjksMy4zMjksMCwwLDEsMi4zNzMsMS44MzlsNi4yMzYtNy4yMThoMy43NTlhMS40NjgsMS40NjgsMCwwLDAsLjQ0NC0uMDlsLjA2LjFjMS4yOTIsMi4yNDEsMi4zNDUsNC44NDgsMi4zNDUsNS44MTcsMCwxLjI1NC0uMDYzLDUuNDc4LS4wODcsNy4wMzVBMi4xMDgsMi4xMDgsMCwwLDAsMjUuMyw0OC4yNkgzOC4yNDdhMi4yMjYsMi4yMjYsMCwwLDAsMi4yMTgtMi40MjRjLS4xMzUtMS40NjEtLjAyNy0yLjEzOS0uMDY2LTIuMTcyYTkuOCw5LjgsMCwwLDEsMi4zMTctLjI1OGMxLjUzNS0uMDY2LDQuMzg5LS4xODksNC45NzctMy4wOTNhMjUuMiwyNS4yLDAsMCwwLC4xNzctMy4xNDRsLjAzOS0xLjIxYy4yNzYtLjAzMy42ODMtLjAzOS45OC0uMDQ0cy42MjQtLjAwOS45MzItLjAzYTIuMjQ3LDIuMjQ3LDAsMCwwLDEuOTIyLTEuMTc3QzUyLjQxMiwzMy40MjcsNTEuNjA1LDMxLjg0Nyw1MS4yNTEsMzEuMjY4Wm0tNi40LDQuMjc1TDQ0LjgsMzcuMDljLS4wMjQuOTE2LS4wNiwyLjMtLjEyMywyLjYzMi0uMDUxLjI0Ni0uMTA4LjUyOC0yLjA5NS42MTItMi4yMjIuMS00LjEzNy4xOC00LjkyNiwyLjA0M2E2LjEsNi4xLDAsMCwwLS4zMTUsMi44MTFIMjYuMjYyYy4wMjYtMS45MTcuMDcyLTUuMDQzLjA3Mi02LjA5MywwLTIuNTA4LTIuNDc3LTYuODY0LTIuNzU5LTcuMzU2bC0uMjc1LS40NjJjLTEuMDY3LTEuNzY4LTIuODUxLTQuNzI5LTEuNTIzLTEwLjY3NWE0LjUsNC41LDAsMCwxLC4yOTQtLjg5MWMuOTYyLTIuMTY2LDMuODkxLTcuMjIxLDEwLjI2Ny03LjM1NmwuNDM4LS4wMDZjNy4xOTQsMCw5LjkzNSwzLjkzLDExLjM2Nyw2Ljg4MiwxLjAxMSwyLjA4OC45NzUsNC44ODEuOTU3LDYuMzgxbC0uMDA2Ljg3LjE2Mi4zMjFjLjQ4OC45ODEsMy4zMjcsNS45ODMsMy4zNDgsNi4wMTkuMDA2LjAwOS4wMDkuMDE4LjAxNS4wMjdDNDcuMywzMi44NzksNDQuOTY4LDMzLjA1Miw0NC44NDgsMzUuNTQzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQyLjc3MSwyMy43NDdBMSwxLDAsMCwwLDQyLjgsMjMuMWwtLjUyOC0xLjM0NmEuODA2LjgwNiwwLDAsMC0uNDU3LS40NTcuODcxLjg3MSwwLDAsMC0uNi0uMDI0bC0xLjQ4OS41NzdhNi42MjQsNi42MjQsMCwwLDAtMS42MzQtMS43NzlsLjYyNS0xLjQ0MmEuNzIuNzIsMCwwLDAsLjAyNC0uNi44MjIuODIyLDAsMCwwLS40MDktLjQ1N2wtMS4zOTMtLjYyNWEuODc0Ljg3NCwwLDAsMC0uNi4wMjQuODIuODIsMCwwLDAtLjQ1Ni40MDlsLS42MjQsMS4zOTRjLS4yMjYtLjAzMS0uNDQ5LS4wNjQtLjY3My0uMWE1LjEzMyw1LjEzMywwLDAsMC0uNzIxLS4wNDgsMy4wNzMsMy4wNzMsMCwwLDAtLjU1Mi4wNDhjLS4xNzguMDMyLS4zNDYuMDY1LS41MDUuMWwtLjU3Ni0xLjQ5YS42NTkuNjU5LDAsMCwwLS40MDktLjQ1Ny44NjUuODY1LDAsMCwwLS42LS4wMjRsLTEuMzQ2LjU3N2EuNzIxLjcyMSwwLDAsMC0uNDguNDA4LjY2My42NjMsMCwwLDAsMCwuNmwuNTI5LDEuNDQzYTguMTY4LDguMTY4LDAsMCwwLTEuNzc4LDEuNzMxbC0xLjM5My0uNjI1YS44My44MywwLDAsMC0uNjQ5LS4wMjQuODE1LjgxNSwwLDAsMC0uNDU2LjQwOGwtLjU3NywxLjM0NmEuNzE1LjcxNSwwLDAsMC0uMDI0LjYuODE5LjgxOSwwLDAsMCwuNDA4LjQ1NmwxLjQ0Mi42MjVhNi42NjIsNi42NjIsMCwwLDAtLjE0NCwxLjM5NWMwLC4xOTIuMDA3LjM3Ny4wMjQuNTUzYTQuMyw0LjMsMCwwLDAsLjA3Mi41bC0xLjQ5LjU3N2EuNzI2LjcyNiwwLDAsMC0uNDMyLjQwOS43NjcuNzY3LDAsMCwwLDAsLjY0OWwuNTI4LDEuMzk0YS43MTYuNzE2LDAsMCwwLC40MDkuNDMzLjc2NS43NjUsMCwwLDAsLjY0OCwwbDEuNDQyLS41MjlhNC4yODQsNC4yODQsMCwwLDAsLjc2OC45MTRjLjI4OS4yNTcuNTkyLjUxMy45MTMuNzY5bC0uNjI0LDEuNDQzYS43NDEuNzQxLDAsMCwwLC40MzIsMS4xMDZsMS4zLjU3N2EuNzE2LjcxNiwwLDAsMCwuNi4wMjQuODI0LjgyNCwwLDAsMCwuNDU2LS40MDlsLjYyNS0xLjQ0MmE3LjMzNiw3LjMzNiwwLDAsMCwxLjQ0MS4xNDRjLjE1OSwwLC4zMjgtLjAwNy41LS4wMjRhNC44NTEsNC44NTEsMCwwLDAsLjUtLjA3MmwuNTc3LDEuNDlhLjkzOS45MzksMCwwLDAsLjQzMi40MzMuNzEzLjcxMywwLDAsMCwuNjI1LDBsMS4zOTMtLjUyOWEuNjU2LjY1NiwwLDAsMCwuNDU2LS40MDgsMS4wMDcsMS4wMDcsMCwwLDAsLjAyNC0uNjQ5TDM3LjgsMzEuNjU2YTkuODY2LDkuODY2LDAsMCwwLC45MzctLjc2OSw4LjM0OCw4LjM0OCwwLDAsMCwuNzkyLS44NjVsMS40NDIuNjI1YS45NjEuOTYxLDAsMCwwLC42LDAsLjcxNy43MTcsMCwwLDAsLjQ1Ny0uNDMzbC42MjQtMS4zNDZhLjk3OS45NzksMCwwLDAsMC0uNi43MTguNzE4LDAsMCwwLS40MzItLjQ1N2wtMS40NDEtLjYyNWE3LjM1NCw3LjM1NCwwLDAsMCwuMTQ0LTEuNDQyYzAtLjE2LS4wMDktLjMyOS0uMDI0LS41cy0uMDQxLS4zNDQtLjA3Mi0uNWwxLjQ4OS0uNTc3QS42NTMuNjUzLDAsMCwwLDQyLjc3MSwyMy43NDdaTTM4LjE1OSwyNy41N2E0LjM2Myw0LjM2MywwLDAsMS0xLjAwOSwxLjQ5LDQuOTMsNC45MywwLDAsMS0xLjQ4OS45ODYsNC41MzcsNC41MzcsMCwwLDEtMS44LjM2LDQuNDIxLDQuNDIxLDAsMCwxLTMuMjkxLTEuMzQ2LDQuNTUsNC41NSwwLDAsMS0xLjMyMS0zLjMxNyw0LjUsNC41LDAsMCwxLDEuMzIxLTMuMjcsNC40MjUsNC40MjUsMCwwLDEsMy4yOTEtMS4zNDYsNC41MjEsNC41MjEsMCwwLDEsMS44LjM2MSw0LjkyOCw0LjkyOCwwLDAsMSwxLjQ4OS45ODUsNC40MzcsNC40MzcsMCwwLDEsMS4wMDksMS40NjcsNC41MzYsNC41MzYsMCwwLDEsLjM2MSwxLjhBNC43MTEsNC43MTEsMCwwLDEsMzguMTU5LDI3LjU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMzczLDM4LjUwOGEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3MywzOC41MDhabTAsNC41QTEuMTI1LDEuMTI1LDAsMSwxLDguNSw0MS44ODMsMS4xMjYsMS4xMjYsMCwwLDEsNy4zNzMsNDMuMDA4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMzMuMjY2YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMzMuMjY2Wm0wLTMuNzVhLjc1Ljc1LDAsMSwxLS43NDguNzVBLjc1Ljc1LDAsMCwxLDcsMjkuNTE2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcsMjQuMjU4YTMsMywwLDEsMC0zLTNBMywzLDAsMCwwLDcsMjQuMjU4Wm0wLTMuNzQ5YS43NS43NSwwLDEsMS0uNzQ4Ljc1QS43NS43NSwwLDAsMSw3LDIwLjUwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik03LjM3Myw2LjI2NmEzLjM3NSwzLjM3NSwwLDEsMCwzLjM3MiwzLjM3NUEzLjM3OSwzLjM3OSwwLDAsMCw3LjM3Myw2LjI2NlptMCw0LjVBMS4xMjUsMS4xMjUsMCwxLDEsOC41LDkuNjQxLDEuMTI2LDEuMTI2LDAsMCwxLDcuMzczLDEwLjc2NloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-390"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_DATA_INTELLIGENCE/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/sap-data-intelligence"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"data-intelligence","plans":[{"technicalName":"enterprise","name":"enterprise","description":"Deprecated service plan. We recommend that you switch to the new dedicated service plan when your service is up for renewal.","metadata":{"bullets":[]}},{"technicalName":"dedicated","name":"dedicated","description":"Required for every new system. Provides a fully isolated cluster with dedicated hardware resources. The system automatically creates one tenant named default.","metadata":{"bullets":[]}},{"technicalName":"tenant","name":"tenant","description":"(Optional) Used in combination with the dedicated service plan. Lets you add up to 19 tenants to the default tenant that run on the same cluster and share the same hardware resources. ","metadata":{"bullets":[]}}]}}},{"name":"CanaryTests","displayName":"CanaryTests","description":"CanaryTests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"StandardDescription","description":"StandardDescription","uniqueIdentifier":"CanaryTests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard3","displayName":"Standard3Description","description":"Standard3Description","uniqueIdentifier":"CanaryTests-Standard3","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"Standard2","displayName":"Standard2Description","description":"Standard2Description","uniqueIdentifier":"CanaryTests-Standard2","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"api-management-devportal-stakeholder-TO-DELETE","displayName":"API Management, developer portal","description":"API Management, developer portal","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"API Management, developer portal","uniqueIdentifier":"standard-standard","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"standard-standard-SYSTEM","productDisplayName":"API Management, developer portal - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"retention-manager-app","displayName":"Data Retention Manager","description":"The SAP Cloud Platform Data Retention Manager lets you block or delete personal data based on the residence and retention rules maintained.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard Plan","uniqueIdentifier":"retention-manager-app","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"retention-manager-app-SYSTEM","productDisplayName":"Data Retention Manager - Data Retention Manager","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNjIgMjI5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjIgMjI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9DQoJLnN0MXtmaWxsOiMzMzMzMzM7fQ0KPC9zdHlsZT4NCjxnIGNsYXNzPSJzdDAiPg0KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yNDUuMiwwLjVjNC40LDAsOC4zLDEuNSwxMS41LDQuNmMzLjIsMy4xLDQuOSw3LDQuOSwxMS44djE5Ni4yYzAsNC40LTEuNiw4LjMtNC45LDExLjUNCgkJYy0zLjIsMy4yLTcuMSw0LjktMTEuNSw0LjlIMTYuM2MtNC44LDAtOC43LTEuNi0xMS44LTQuOWMtMy4xLTMuMi00LjYtNy4xLTQuNi0xMS41VjE2LjljMC00LjgsMS41LTguNyw0LjYtMTEuOA0KCQljMy4xLTMuMSw3LTQuNiwxMS44LTQuNkgyNDUuMnogTTI0NS4yLDE2LjlIMTYuM3YxOTYuMmgyMjguOVYxNi45eiBNNTkuNywxMTNMMzIuNiw4NS45bDguNy05LjdsMTguNCwxOC40bDM2LjMtNDVsOS4yLDguNw0KCQlMNTkuNywxMTN6IE01OS43LDE5Ni44bC0yNy4xLTI3LjZsOC43LTkuMmwxOC40LDE4LjRMOTYsMTMyLjlsOS4yLDkuMkw1OS43LDE5Ni44eiBNMjA0LjMsNjUuOWM1LjQsMCw4LjIsMi43LDguMiw4LjINCgkJYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40Yy0yLDAtMy45LTAuOC01LjYtMi42Yy0xLjctMS43LTIuNi0zLjYtMi42LTUuNmMwLTIuNCwwLjgtNC4zLDIuNi01LjkNCgkJYzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiBNMjA0LjMsMTQ3LjdjNS40LDAsOC4yLDIuNyw4LjIsOC4yYzAsMi0wLjgsMy45LTIuMyw1LjZjLTEuNSwxLjctMy41LDIuNi01LjksMi42aC02NS40DQoJCWMtMiwwLTMuOS0wLjgtNS42LTIuNmMtMS43LTEuNy0yLjYtMy42LTIuNi01LjZjMC0yLjQsMC44LTQuMywyLjYtNS45YzEuNy0xLjUsMy42LTIuMyw1LjYtMi4zSDIwNC4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-261"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/DATA_RETENTION_MANAGER"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu10"},{"key":"cf-us10"}]}},{"name":"transport","displayName":"Cloud Transport Management","description":"SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Provides programmatic access to Cloud Transport Management.","uniqueIdentifier":"internal-transport-service-service","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"internal-transport-service-service-SYSTEM","productDisplayName":"Transport Management - Transport Management Service","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0idHJhbnNwb3J0LW1hbmFnZW1lbnQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnRyYW5zcG9ydC1tYW5hZ2VtZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Mi4zNzEsNTJhNS40LDUuNCwwLDAsMS0zLjUxNC0xLjI0NUE1LjQ3Niw1LjQ3NiwwLDAsMSwzNyw0Ny44NzVIMzMuMjkxYTUuMTk0LDUuMTk0LDAsMCwxLTEuOCwyLjg4LDUuNTgzLDUuNTgzLDAsMCwxLTcuMDI5LDAsNS40ODIsNS40ODIsMCwwLDEtMS44NTgtMi44OEgyMC43NzZhMi4zNTEsMi4zNTEsMCwwLDEtMi40My0yLjQzN1YzOS4yNWEyLjIyNiwyLjIyNiwwLDAsMSwuMjYyLTEuMDMxLDIuMjIsMi4yMiwwLDAsMS0uMjYyLTEuMDMxVjI2Ljg3NWEyLjM1MiwyLjM1MiwwLDAsMSwyLjQzLTIuNDM3SDM3LjIyOWEyLjQwOSwyLjQwOSwwLDAsMSwxLjcuNjgyLDIuMjg3LDIuMjg3LDAsMCwxLC43LDEuMzhoLjg3YTguNDQ0LDguNDQ0LDAsMCwxLDMuMDI0LjU0MSw4LjY3Myw4LjY3MywwLDAsMSwyLjU1MywxLjUxNEE5LjA3Myw5LjA3MywwLDAsMSw0OCwzMC44NDJhOC41MDksOC41MDksMCwwLDEsMS4wNDMsMi44NjVsLjQ2NywzLjFoLjA2NGEyLjQxLDIuNDEsMCwwLDEsMS43LjY4M0EyLjMzMiwyLjMzMiwwLDAsMSw1MiwzOS4yNXY2LjE4OGEyLjMyOCwyLjMyOCwwLDAsMS0uNzI3LDEuNzU0LDIuNCwyLjQsMCwwLDEtMS43LjY4M0g0Ny42ODhhNS4yLDUuMiwwLDAsMS0xLjgsMi44OEE1LjQxLDUuNDEsMCwwLDEsNDIuMzcxLDUyWm0wLTguMjVhMi43LDIuNywwLDEsMCwxLjkxOS43OTJBMi41ODcsMi41ODcsMCwwLDAsNDIuMzcxLDQzLjc1Wm0tMTQuNCwwYTIuNywyLjcsMCwxLDAsMS45Mi43OTJBMi41ODksMi41ODksMCwwLDAsMjcuOTc0LDQzLjc1Wm0xOS43MTEsMS4zMTJINDkuMlYzOS42MjVIMjEuMTV2NS40MzdoMS40NTVhNS42MzEsNS42MzEsMCwwLDEsMS44NTItMi44NDQsNS40ODYsNS40ODYsMCwwLDEsOC44MzEsMi44NDRIMzdhNS42MjUsNS42MjUsMCwwLDEsMS44NTItMi44NDQsNS40ODcsNS40ODcsMCwwLDEsOC44MzEsMi44NDRabS04LjAyNS04LjI1aDcuMDI2bC0uNDQxLTIuNjU3YTUuODE5LDUuODE5LDAsMCwwLTUuNzM4LTQuODQzSDM5LjY2Wm0tMTguNTEsMGgxNS43VjI3LjI1SDIxLjE1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE1LjMwNywyOEgxMS41NzVjLTMuMTY2LDAtNC41ODMtMi43MTktNC41ODMtNS40MTVhNS4zODUsNS4zODUsMCwwLDEsMy43MjctNS4xMDlsMi4yNjUtLjc2OS0uMjIzLTIuMzg0YTguMDU4LDguMDU4LDAsMCwxLDEuNTE1LTUuMzM1QzE1LjMxLDcuNzg2LDE2LjQ3MSw3LDE5LjA5Myw3YTUuOTI4LDUuOTI4LDAsMCwxLDUuODMzLDQuMDM5bDEuMywzLjI4OUwyOS4yNTEsMTIuNWEzLjkwNiwzLjkwNiwwLDAsMSwyLjAzOS0uNTkxQTMuOTgzLDMuOTgzLDAsMCwxLDM1LjIsMTUuMTYxbC4yODcsMS41MjksMS40MTEuNjQ1QTUuNTc3LDUuNTc3LDAsMCwxLDQwLjExLDIyaDMuMDIxYTguNTczLDguNTczLDAsMCwwLTQuOTk1LTcuMzk1LDYuOTc2LDYuOTc2LDAsMCwwLTYuODQ2LTUuNyw2LjksNi45LDAsMCwwLTMuNTg0LDEuMDIyQTkuNDI4LDkuNDI4LDAsMCwwLDE5LjAyLDRDOC44OTEsNCw5Ljc4NSwxNC42MjYsOS43ODUsMTQuNjI2QTguMzg1LDguMzg1LDAsMCwwLDQsMjIuNTg1QzQsMjcuMjMyLDYuOTQxLDMxLDExLjU3NSwzMWgzLjczMloiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-249"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/TRANSPORT_MANAGEMENT_SERVICE"},{"title":"Buy Now","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sapstore.com/solutions/40168/SAP-Cloud-Platform-Transport-Management"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-us10"},{"key":"cf-ap10"}]}},{"name":"sap-identity-services-onboarding","displayName":"Cloud Identity Services","description":"Cloud Identity Services provide basic capabilities for user authentication.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"connectivity","displayName":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","uniqueIdentifier":"sap-identity-services-onboarding-connectivity","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"default","displayName":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","uniqueIdentifier":"sap-identity-services-onboarding-default","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sap-identity-services-onboarding-default-SYSTEM","productDisplayName":"Cloud Identity Services - Default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_AUTHENTICATION"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"sap-identity-services-onboarding","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"additional-tenant","name":"additional-tenant","description":"SAP Cloud Platform Identity Authentication provides you with simple and secure cloud-based access to business processes, applications, and data. It simplifies your user experience through state-of-the-art authentication mechanisms, secure single sign-on, on-premise integration, and convenient self-service options.","metadata":{"bullets":[]}},{"technicalName":"default","name":"default","description":"SAP Cloud Identity Services allows you to consume Identity Authentication, Identity Directory and Identity Provisioning services. Please take in mind that new instances will be created only in case there aren''t existing instances bound to your customer id already.","metadata":{"bullets":[]}},{"technicalName":"connectivity","name":"connectivity","description":"Enable connectivity to on-premise systems for SAP Identity Services.","metadata":{"bullets":[]}}]}}},{"name":"feature-flags","displayName":"Feature Flags Service","description":"The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","uniqueIdentifier":"feature-flags-standard","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Support for different flag types and metrics"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"lite","displayName":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","uniqueIdentifier":"feature-flags-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Basic on/off functionality"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}}},{"name":"ads","displayName":"Forms Service by Adobe","description":"SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering ''adobe'' into the search field.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Standard","description":"Standard plan for Adobe Document Services","uniqueIdentifier":"ads-standard","provisioningMethod":"SERVICE_BROKER","amount":4.0,"remainingAmount":4.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"ads-standard-SYSTEM","productDisplayName":"SAP Forms service by Adobe: ADS - Standard","amount":4.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUwLjgyNDkgMzMuODkyMkM0Ny4yNjE3IDMwLjE5MjMgMzcuNTMyNCAzMS42OTk4IDM1LjIwMyAzMS45NzM4QzMxLjc3NzMgMjguNjg0OCAyOS40NDc5IDI0LjcxMDkgMjguNjI1NiAyMy4zNDA3QzI5Ljg1ODggMTkuNjQwOCAzMC42ODA4IDE1Ljk0MDggMzAuODE4MSAxMS45NjcyQzMwLjgxODEgOC41NDEyNSAyOS40NDc5IDQuODQxNjEgMjUuNjEwNiA0Ljg0MTYxQzI0LjI0MDQgNC44NDE2MSAyMy4wMDY5IDUuNjYzNTYgMjIuMzIxNyA2Ljc1OTc4QzIwLjY3NzUgOS42Mzc3NyAyMS4zNjI1IDE1LjM5MzIgMjMuOTY2MiAyMS4yODU1QzIyLjQ1OSAyNS41MzM0IDIxLjA4ODUgMjkuNjQ0MyAxNy4yNTE1IDM2LjkwNzJDMTMuMjc3NiAzOC41NTExIDQuOTE4NTQgNDIuMzg4MyA0LjIzMzI5IDQ2LjQ5OTVDMy45NTkzIDQ3LjczMjQgNC4zNzAyNyA0OC45NjYzIDUuMzI5NTEgNDkuOTI1MkM2LjI4ODc0IDUwLjc0NzQgNy41MjE5NSA1MS4xNTg0IDguNzU1NDYgNTEuMTU4NEMxMy44MjU2IDUxLjE1ODQgMTguNzU4NyA0NC4xNzAxIDIyLjE4NDcgMzguMjc3MUMyNS4wNjI0IDM3LjMxODIgMjkuNTg0NiAzNS45NDc3IDM0LjEwNjcgMzUuMTI1NEMzOS40NTA5IDM5Ljc4NDYgNDQuMTEgNDAuNDY5NiA0Ni41NzY3IDQwLjQ2OTZDNDkuODY1NCA0MC40Njk2IDUxLjA5ODkgMzkuMDk5NCA1MS41MDk5IDM3Ljg2NTlDNTIuMTk0OCAzNi40OTYgNTEuNzgzOSAzNC45ODg1IDUwLjgyNDkgMzMuODkyMlpNNDcuMzk4NyAzNi4yMjJDNDcuMjYxNyAzNy4xODEyIDQ2LjAyODggMzguMTQwMSA0My44MzYgMzcuNTkyMkM0MS4yMzIzIDM2LjkwNzIgMzguOTAyOSAzNS42NzM3IDM2Ljg0NzQgMzQuMDI5MkMzOC42Mjg5IDMzLjc1NDkgNDIuNjAyNSAzMy4zNDQgNDUuNDgwNSAzMy44OTIyQzQ2LjU3NjcgMzQuMTY2MiA0Ny42NzMgMzQuODUxNSA0Ny4zOTg3IDM2LjIyMlpNMjQuNTE0NCA3Ljk5Mjk5QzI0Ljc4ODQgNy41ODIwMiAyNS4xOTk3IDcuMzA4MDQgMjUuNjEwNiA3LjMwODA0QzI2Ljg0MzkgNy4zMDgwNCAyNy4xMTc4IDguODE1MjMgMjcuMTE3OCAxMC4wNDg3QzI2Ljk4MDkgMTIuOTI2NyAyNi40MzI2IDE1LjgwNDEgMjUuNDczNyAxOC41NDQ4QzIzLjQxNzkgMTMuMDYzNCAyMy44MjkyIDkuMjI2MiAyNC41MTQ0IDcuOTkyOTlaTTI0LjI0MDQgMzQuNTc3NUMyNS4zMzY3IDMyLjM4NSAyNi44NDQyIDI4LjU0NzggMjcuMzkyMSAyNi45MDMzQzI4LjYyNTMgMjguOTU4NSAzMC42ODA4IDMxLjQyNTUgMzEuNzc3MyAzMi41MjE3QzMxLjc3NzMgMzIuNjU5IDI3LjUyOTEgMzMuNDgxIDI0LjI0MDQgMzQuNTc3NVpNMTYuMTU1MyA0MC4wNTg5QzEzLjAwMzcgNDUuMjY2IDkuNzE0NjkgNDguNTU0NyA3LjkzMzIyIDQ4LjU1NDdDNy42NTkyNCA0OC41NTQ3IDcuMzg0OTYgNDguNDE3NyA3LjExMDk4IDQ4LjI4MDdDNi42OTk3MSA0OC4wMDY0IDYuNTYyNzIgNDcuNTk1NSA2LjY5OTcxIDQ3LjA0NzVDNy4xMTA5OCA0NS4xMjkgMTAuNjczOSA0Mi41MjUzIDE2LjE1NTMgNDAuMDU4OVoiIGZpbGw9IiNGQTBGMDAiLz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-561"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/CP_FORMS_BY_ADOBE/dcbea777ceb3411cb10500a1a392273e/8a668ee41fea4cf39c6bd6d21bff6a6e.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/protected/index.html#/serviceCatalog/forms-service-by-adobe"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"ads","plans":[{"technicalName":"standard","name":"Standard","description":"Standard plan for Adobe Document Services","metadata":{"bullets":[]}}]}}},{"name":"connectivity","displayName":"Connectivity Service","description":"SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity established via shared service resources for all applications"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"connectivity_proxy","displayName":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","uniqueIdentifier":"connectivity-connectivity_proxy","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Connectivity Proxy to be used as a dedicated or shared resource"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}}},{"name":"destination","displayName":"Destination Service","description":"The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"lite","displayName":"lite","description":"Shared resources across all apps","uniqueIdentifier":"destination-lite","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-sa10-poc","displayName":"KSA (Riyadh)","region":"sa10-poc","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.sa10-poc.hanavlab.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sa10-poc.hanavlab.ondemand.com","domain":"sa10-poc.hanavlab.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Shared resources across all consumers"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}}},{"name":"authorization","displayName":"Authorization & Trust Management","description":"The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios.","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"application","displayName":"Application","description":"Authorization Management","uniqueIdentifier":"authorization-application","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"authorization-application-SYSTEM","productDisplayName":"Authorization Management Service - Application","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYXV0aG9yaXphdGlvbi1tYW5hZ2VtZW50IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5hdXRob3JpemF0aW9uLW1hbmFnZW1lbnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LjY1OCwxNC4wMmEyLjQsMi40LDAsMCwwLS45MDgtLjg3OWguMDFWOS42MjVhNC45ODksNC45ODksMCwwLDAtLjQ4OS0yLjE4N0E1LjYsNS42LDAsMCwwLDQ1LjkyNCw1LjY2YTYuNzI4LDYuNzI4LDAsMCwwLTEuOTkyLTEuMjExQTYuNTI0LDYuNTI0LDAsMCwwLDQxLjUxLDRhNi42NzEsNi42NzEsMCwwLDAtMi40NDIuNDQ5QTYuMzY2LDYuMzY2LDAsMCwwLDM3LjA3Niw1LjY2YTUuNzI3LDUuNzI3LDAsMCwwLTEuMzI4LDEuNzc4LDQuOTc0LDQuOTc0LDAsMCwwLS40ODgsMi4xODdsLS4wMzksMy41MTEtLjAxLjAwNWEyLjQ4MiwyLjQ4MiwwLDAsMC0uODc5Ljg3OUEyLjQ1MywyLjQ1MywwLDAsMCwzNCwxNS4yODlWMjEuNUEyLjQ2OSwyLjQ2OSwwLDAsMCwzNi41LDI0aDEwYTIuNDQzLDIuNDQzLDAsMCwwLDEuNzU4LS43MjNBMi4zODYsMi4zODYsMCwwLDAsNDksMjEuNVYxNS4yODlBMi4zNDIsMi4zNDIsMCwwLDAsNDguNjU4LDE0LjAyWk0zNy4wMSw5LjYwNWE0LjAxOCw0LjAxOCwwLDAsMSwxLjUtMy4xOTMsNC4xNTQsNC4xNTQsMCwwLDEsMy0uOTEyLDQuMTc2LDQuMTc2LDAsMCwxLDMsMS4xMTEsMy42NDMsMy42NDMsMCwwLDEsMS41LDIuOTk0VjEyLjc1SDM2Ljk3MVpNNDIuNSwxNy44MzR2Mi45MzFhLjgzMi44MzIsMCwwLDEtMS42NjMsMFYxNy44MzRhMS41MzQsMS41MzQsMCwwLDEtLjY1Ni0xLjI2OSwxLjQ4OCwxLjQ4OCwwLDEsMSwyLjk3NSwwQTEuNTM2LDEuNTM2LDAsMCwxLDQyLjUsMTcuODM0WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTMzLjMsMzkuNTJBOC45OCw4Ljk4LDAsMCwwLDI4LjQ4LDM0LjcsOC44MDksOC44MDksMCwwLDAsMjUsMzRIMTZhOC43MzQsOC43MzQsMCwwLDAtMy41MTYuNyw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsNy43LDM5LjUyLDguNzkxLDguNzkxLDAsMCwwLDcsNDN2OUgzNFY0M0E4LjgwOSw4LjgwOSwwLDAsMCwzMy4zLDM5LjUyWk0zMSw0OUgxMFY0M2E1Ljc4MSw1Ljc4MSwwLDAsMSwuNDY0LTIuMzA3LDYsNiwwLDAsMSwxLjI5NC0xLjkzNSw2LjEyMiw2LjEyMiwwLDAsMSwxLjkyMS0xLjNBNS43MTYsNS43MTYsMCwwLDEsMTYsMzdoOWE1Ljc4Myw1Ljc4MywwLDAsMSwyLjMuNDYzLDUuOTc5LDUuOTc5LDAsMCwxLDMuMjMyLDMuMjI5QTUuOCw1LjgsMCwwLDEsMzEsNDNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjYuODYzLDMxLjM2M0E5LjE0LDkuMTQsMCwwLDAsMjguOCwyOC41MTZhOS4wNTQsOS4wNTQsMCwwLDAsMC03QTguOTgsOC45OCwwLDAsMCwyMy45OCwxNi43YTkuMDU0LDkuMDU0LDAsMCwwLTcsMCw5LjE0LDkuMTQsMCwwLDAtMi44NDcsMS45MzRBOS4wMTcsOS4wMTcsMCwwLDAsMTIuMiwyMS41MmE5LjA1NCw5LjA1NCwwLDAsMCwwLDdBOS4xNzQsOS4xNzQsMCwwLDAsMTYuOTg0LDMzLjNhOS4wNTQsOS4wNTQsMCwwLDAsNywwQTkuMDE3LDkuMDE3LDAsMCwwLDI2Ljg2MywzMS4zNjNaTTIwLjUsMzFhNS43LDUuNywwLDAsMS0yLjMyMi0uNDU1LDYuMTY2LDYuMTY2LDAsMCwxLTMuMjI0LTMuMjI3QTUuNjg0LDUuNjg0LDAsMCwxLDE0LjUsMjVhNS43ODEsNS43ODEsMCwwLDEsLjQ2NC0yLjMwNyw2LDYsMCwwLDEsMS4yOTQtMS45MzUsNi4xMjIsNi4xMjIsMCwwLDEsMS45MjEtMS4zQTUuNzE2LDUuNzE2LDAsMCwxLDIwLjUsMTlhNS43ODMsNS43ODMsMCwwLDEsMi4zLjQ2Myw1Ljk3OSw1Ljk3OSwwLDAsMSwzLjIzMiwzLjIyOUE1LjgsNS44LDAsMCwxLDI2LjUsMjVhNS43MTYsNS43MTYsMCwwLDEtLjQ1NCwyLjMxOSw2LjEyNyw2LjEyNywwLDAsMS0xLjMsMS45MjMsNi4wMDksNi4wMDksMCwwLDEtMS45MzcsMS4yOTVBNS43ODEsNS43ODEsMCwwLDEsMjAuNSwzMVoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Extension Suite - Development Efficiency"}],"regionInformation":[{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us20"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}]}},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","description":"The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"app-host","displayName":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","uniqueIdentifier":"html5-apps-repo-app-host","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"app-runtime","displayName":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","uniqueIdentifier":"html5-apps-repo-app-runtime","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-us31","displayName":"US (Iowa) GCP","region":"us31","environment":"cloudfoundry","iaasProvider":"GCP","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.us31.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.us31.hana.ondemand.com","domain":"us31.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}}},{"name":"SAPLaunchpad-flplkg","displayName":"SAPLaunchpad-flplkg","description":"SAPLaunchpad-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"default-test","description":"default-test","uniqueIdentifier":"SAPLaunchpad-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"personal-data-manager","displayName":"Personal Data Manager","description":"Personal Data Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Personal Data Manager","description":"Personal Data Manager","uniqueIdentifier":"personal-data-manager-standard","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-standard-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"dev","displayName":"Personal Data Manager DEV","description":"Personal Data Manager DEV","uniqueIdentifier":"personal-data-manager-dev","provisioningMethod":"SERVICE_BROKER","amount":2.0,"remainingAmount":2.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"personal-data-manager-dev-SYSTEM","productDisplayName":"Personal Data Manager - Personal Data Manager DEV","amount":2.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"rabbitmq","displayName":"RabbitMQ","description":"RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"virtualhost","displayName":"virtualhost","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","uniqueIdentifier":"rabbitmq-virtualhost","provisioningMethod":"SERVICE_BROKER","amount":2000000000,"remainingAmount":null,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":["Single Virtual Host instance"],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":true}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlYjYwMjI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5yYWJiaXRtcTwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDYuMDgsMTkuMkgzMC43MjNBMS45MTMsMS45MTMsMCwwLDEsMjguOCwxNy4yNzdWMS45MTNBMS45MSwxLjkxLDAsMCwwLDI2Ljg3NywwSDIxLjEyM0ExLjkwOSwxLjkwOSwwLDAsMCwxOS4yLDEuOTEzVjE3LjI3N0ExLjkxNCwxLjkxNCwwLDAsMSwxNy4yNzksMTkuMkgxMS41MjJBMS45MTQsMS45MTQsMCwwLDEsOS42LDE3LjI3N1YxLjkxM0ExLjkwNywxLjkwNywwLDAsMCw3LjY4MSwwSDEuOTIyQTEuOTA4LDEuOTA4LDAsMCwwLDAsMS45MTNWNDYuMDczQTEuOTE1LDEuOTE1LDAsMCwwLDEuOTIyLDQ4SDQ2LjA4QTEuOTE1LDEuOTE1LDAsMCwwLDQ4LDQ2LjA3M1YyMS4xMThhMS45MSwxLjkxLDAsMCwwLTEuOTItMS45Mk0zOC40LDM1LjUwOWEyLjg3NywyLjg3NywwLDAsMS0yLjg4MSwyLjg4M0gzMS42NzdBMi44NzQsMi44NzQsMCwwLDEsMjguOCwzNS41MDlWMzEuNjczYTIuODc0LDIuODc0LDAsMCwxLDIuODc2LTIuODg4aDMuODQ0QTIuODc3LDIuODc3LDAsMCwxLDM4LjQsMzEuNjczWiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-90"}],"visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it. RabbitMQ 3.6 plans are reaching end of life soon. Support to upgrade the existing RabbitMQ 3.6 instances to the new 3.7 plans would be provided soon.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/rabbitmq.html"},"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/RabbitMQ/Cloud/en-US"},{"title":"Tutorial","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/bf757994794445ed904b97bf1907812a.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"}],"CFService":{"id":"d035f948-5d3a-43d7-9aec-954e234c3e9d","description":"RabbitMQ messaging","name":"rabbitmq","tags":["rabbitmq","mbus","pubsub","amqp"],"metadata":{"displayName":"RabbitMQ"},"bindable":true,"plan_updateable":true,"plans":[{"id":"e396dbdf-2d5d-4710-87e1-81f100fcf795","description":"RabbitMQ service - dev plan (for non-productive usage)","free":"true","name":"dev","technicalName":"dev","metadata":{"displayName":"dev","bullets":["Single Node Instance","256 MB Memory","500 MB Disk"]}},{"id":"4a8e635b-6957-4013-9eb4-5d29547a9423","description":"RabbitMQ service - multi-node x-small plan without load balancing","free":"false","name":"xsmall","technicalName":"xsmall","metadata":{"displayName":"xsmall","bullets":["3 Node Cluster","1 GB Memory","10 GB Disk"]}},{"id":"608da532-3280-4edd-bbd3-e52d331d1933","description":"RabbitMQ service - multi-node small plan with load balancing","free":"false","name":"small","technicalName":"small","metadata":{"displayName":"small","bullets":["3 Node Cluster","2 Load Balancer","2 GB Memory","20 GB Disk"]}},{"id":"1e2f5f80-48c3-4804-986d-1a3c204508b0","description":"RabbitMQ service - multi-node medium plan with load balancing","free":"false","name":"medium","technicalName":"medium","metadata":{"displayName":"medium","bullets":["3 Node Cluster","2 Load Balancer","4 GB Memory","40 GB Disk"]}},{"id":"5800ce1b-1617-43ee-b4bb-00b980f94e15","description":"RabbitMQ service - multi-node large plan with load balancing","free":"false","name":"large","technicalName":"large","metadata":{"displayName":"large","bullets":["3 Node Cluster","2 Load Balancer","16 GB Memory","80 GB Disk"]}},{"id":"d035f948-5d3a-43d7-9aec-954e134c3e9d","description":"[BETA] RabbitMQ service - virtual host plan within an existing RabbitMQ service instance (for non-productive usage)","free":"true","name":"virtualhost","technicalName":"virtualhost","metadata":{"displayName":"virtualhost","bullets":["Single Virtual Host instance"]}}]}}},{"name":"Tests","displayName":"Tests","description":"Tests","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Tests","description":"Tests","uniqueIdentifier":"Tests-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"PortalApplication-flplkg","displayName":"PortalApplication-flplkg","description":"PortalApplication-flplkg","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default-test","displayName":"portal-flplkg - do not use","description":"portal-flplkg - do not use","uniqueIdentifier":"PortalApplication-flplkg-default-test","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":null},{"name":"sap-graph","displayName":"SAP Graph","description":"SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP''s ecosystem of developers and customers, SAP Graph''s one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"free","displayName":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","uniqueIdentifier":"sap-graph-free","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-free-SYSTEM","productDisplayName":"SAP Graph - Free","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"beta","displayName":"beta","description":"Beta - no commercialization yet","uniqueIdentifier":"sap-graph-beta","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":true,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"BETA","productDisplayName":"BETA","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"standard","displayName":"Standard","description":"Standard","uniqueIdentifier":"sap-graph-standard","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"sap-graph-standard-SYSTEM","productDisplayName":"SAP Graph - Standard","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxNjcpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41MzQzIDguNTYxMTNDMTAuNTM0MyA3LjIzNTY1IDkuNDU5NzQgNi4xNjExMyA4LjEzNDI2IDYuMTYxMTNDNi44MDg3OCA2LjE2MTEzIDUuNzM0MjYgNy4yMzU2NSA1LjczNDI2IDguNTYxMTNMNS43MzQyNSAxOC44NzgyQzUuNzM0MjUgMjAuMjAzNyA2LjgwODc3IDIxLjI3ODIgOC4xMzQyNSAyMS4yNzgyQzkuNDU5NzMgMjEuMjc4MiAxMC41MzQzIDIwLjIwMzcgMTAuNTM0MyAxOC44NzgyTDEwLjUzNDMgOC41NjExM1pNMTAuNTM0MyAzOC44MDg1QzEwLjUzNDMgMzcuNDgzIDkuNDU5NzQgMzYuNDA4NSA4LjEzNDI2IDM2LjQwODVDNi44MDg3NyAzNi40MDg1IDUuNzM0MjYgMzcuNDgzIDUuNzM0MjYgMzguODA4NVY0Ny44NjMzQzUuNzM0MjYgNDkuMTg4OCA2LjgwODc3IDUwLjI2MzMgOC4xMzQyNiA1MC4yNjMzSDQzLjM5ODFDNDQuNzIzNSA1MC4yNjMzIDQ1Ljc5OCA0OS4xODg4IDQ1Ljc5OCA0Ny44NjMzQzQ1Ljc5OCA0Ni41Mzc5IDQ0LjcyMzUgNDUuNDYzMyA0My4zOTgxIDQ1LjQ2MzNIMTAuNTM0M1YzOC44MDg1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNjcpIi8+CjxwYXRoIGQ9Ik0yNS4zNjQ3IDIxLjIyNDNDMjUuMzAyIDIxLjI4NzEgMjUuMTQ1MSAyMS4zMTg0IDI0Ljg5NDEgMjEuMzE4NEMyNC4yNjY3IDIxLjMxODQgMjMuNzMzNCAyMS4xOTI5IDIzLjI5NDEgMjAuOTQyTDEzLjAzNTMgMjguNTY1NVYyOC44NDc4QzEzLjAzNTMgMzAuMTAyNyAxMi41OTYxIDMxLjE2OTQgMTEuNzE3NyAzMi4wNDc4QzEwLjgzOTMgMzIuOTI2MyA5Ljc3MjYgMzMuMzY1NSA4LjUxNzcgMzMuMzY1NUM3LjI2MjggMzMuMzY1NSA2LjE5NjExIDMyLjkyNjMgNS4zMTc2OCAzMi4wNDc4QzQuNDM5MjUgMzEuMTY5NCA0IDMwLjEwMjcgNCAyOC44NDc4QzQgMjcuNTkyOSA0LjQzOTI1IDI2LjUyNjMgNS4zMTc2OCAyNS42NDc4QzYuMTk2MTEgMjQuNzY5NCA3LjI2MjggMjQuMzMwMiA4LjUxNzcgMjQuMzMwMkM5LjE0NTE1IDI0LjMzMDIgOS42Nzg0OCAyNC40NTU3IDEwLjExNzcgMjQuNzA2N0wyMC4zNzY1IDE3LjA4MzFWMTYuODAwOEMyMC4zNzY1IDE1LjU0NTkgMjAuODE1NyAxNC40NzkyIDIxLjY5NDEgMTMuNjAwOEMyMi41NzI2IDEyLjcyMjQgMjMuNjM5MiAxMi4yODMxIDI0Ljg5NDEgMTIuMjgzMUMyNi4xNDkgMTIuMjgzMSAyNy4yMTU3IDEyLjcyMjQgMjguMDk0MSAxMy42MDA4QzI4Ljk3MjYgMTQuNDc5MiAyOS40MTE4IDE1LjU0NTkgMjkuNDExOCAxNi44MDA4QzI5LjQxMTggMTcuMzAyNyAyOS4zMTc3IDE3Ljc3MzMgMjkuMTI5NCAxOC4yMTI1TDM2LjQ3MDYgMjcuNDM2MUMzNi41OTYxIDI3LjM3MzMgMzYuNzUyOSAyNy4zNDIgMzYuOTQxMiAyNy4zNDJDMzcuNDQzMSAyNy4zNDIgMzcuODgyNCAyNy40MzYxIDM4LjI1ODggMjcuNjI0M0w0My4wNTg4IDIzLjU3NzJDNDIuOTk2MSAyMy4zODkgNDIuOTY0NyAyMy4xMzggNDIuOTY0NyAyMi44MjQzQzQyLjk2NDcgMjEuNTY5NCA0My40MDM5IDIwLjUwMjcgNDQuMjgyMyAxOS42MjQzQzQ1LjE2MDggMTguNzQ1OSA0Ni4yMjc0IDE4LjMwNjcgNDcuNDgyMyAxOC4zMDY3QzQ4LjczNzIgMTguMzA2NyA0OS44MDM5IDE4Ljc0NTkgNTAuNjgyMyAxOS42MjQzQzUxLjU2MDggMjAuNTAyNyA1MiAyMS41Njk0IDUyIDIyLjgyNDNDNTIgMjQuMDc5MiA1MS41NjA4IDI1LjE0NTkgNTAuNjgyMyAyNi4wMjQzQzQ5LjgwMzkgMjYuOTAyNyA0OC43MzcyIDI3LjM0MiA0Ny40ODIzIDI3LjM0MkM0Ny4xNjg2IDI3LjM0MiA0Ni43NjA4IDI3LjI3OTIgNDYuMjU4OCAyNy4xNTM3TDQxLjM2NDcgMzEuMjk0OUM0MS40Mjc0IDMxLjQyMDQgNDEuNDU4OCAzMS42NCA0MS40NTg4IDMxLjk1MzdDNDEuNDU4OCAzMy4xNDU5IDQxLjAxOTYgMzQuMTgxMiA0MC4xNDEyIDM1LjA1OTZDMzkuMjYyNyAzNS45MzggMzguMTk2MSAzNi4zNzcyIDM2Ljk0MTIgMzYuMzc3MkMzNS42ODYzIDM2LjM3NzIgMzQuNjE5NiAzNS45MzggMzMuNzQxMiAzNS4wNTk2QzMyLjg2MjggMzQuMTgxMiAzMi40MjM1IDMzLjExNDUgMzIuNDIzNSAzMS44NTk2QzMyLjQyMzUgMzEuNDIwNCAzMi41MTc3IDMwLjk0OTggMzIuNzA1OSAzMC40NDc4TDI1LjM2NDcgMjEuMjI0M1oiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTY3KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4xMTAyIDEyLjc4MDEpIHJvdGF0ZSg0Ny43NDcpIHNjYWxlKDQxLjcyNjEgNTAuNDA3OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTE2NyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDE1LjgyMDkpIHJvdGF0ZSgyNi45MTA3KSBzY2FsZSgzNy4yNjgyIDU2Ljg0MTYpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTY3Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-532"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_GRAPH"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/sap-graph"},{"title":"Business Technology Platform Supplemental Terms and Conditions","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://www.sap.com/about/trust-center/agreements/cloud/cloud-services.html?tag=language:english&search=Supplement%20Business%20Technology%20Platform&sort=latest_desc"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10"}],"CFService":{"name":"sap-graph","plans":[{"technicalName":"free","name":"Free","description":"Free usage of SAP Graph for up to two Business Data Graphs, limited to 100,000 API calls per month. Please note, only community support is available for free service plans and these are not subject to SLAs. Use of free tier service plans are subject to additional terms and conditions as provided in the Business Technology Platform Supplemental Terms and Conditions linked in the Additional Links tab displayed in the Service tile.","metadata":{"bullets":[]}}]}}},{"name":"enterprise-messaging-hub","displayName":"Event Mesh","description":"The SAP Event Mesh service decouples communication and allows for event-driven business processes.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"Event Mesh Hub","description":"Event Mesh","uniqueIdentifier":"enterprise-messaging-hub","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"enterprise-messaging-hub-SYSTEM","productDisplayName":"Enterprise Messaging Hub - Enterprise Messaging Hub","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":null,"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ibWVzc2FnaW5nLXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzVhN2E5NDt9LmNscy0ye2ZpbGw6IzAwOTJkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPm1lc3NhZ2luZy1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSwzOS4zMTNIMTQuMjg1QTcuMjU3LDcuMjU3LDAsMCwxLDEyLjAyNywyNS4xNWwyLjI3OS0uNzY3LS4yMzItMi4zOWMwLS4wNDItLjM4LTQuMjM2LDIuMDEtNy4wMTMsMS4zNzctMS42LDMuNTIzLTIuNSw2LjM4MS0yLjY2NmE4LjU2Myw4LjU2MywwLDAsMSw3LjgsNS4zNTVsMS4zMDYsMy4yODksMy4wMzEtMS44MjdhNS40NSw1LjQ1LDAsMCwxLDIuODQzLS44MTgsNS41NDQsNS41NDQsMCwwLDEsNS40NDMsNC41MThsLjI4OCwxLjUyOUw0NC41OTUsMjVjMi4yLDEsMi44LDMuMDEsMy4yODUsNS4zMDhINTEuMWMtLjUxNy0zLjU5LTIuMDY5LTYuNTgyLTUuMjYtOC4wMzhhOC40ODgsOC40ODgsMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsOS4zMTNDOS43NTMsOS45ODMsMTEuMDksMjIuMywxMS4wOSwyMi4zYTEwLjI1NywxMC4yNTcsMCwwLDAsMy4xOTQsMjAuMDEySDE5Ii8+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI0Ni43NTYgNDIuMzY5IDQzLjY1NyA0NS40NjggNDUuNTY0IDQ3LjM3NSA1MiA0MC45MzkgNDUuNTY0IDM0LjUwMyA0My42NTcgMzYuNDEgNDYuNjM2IDM5LjMxMyAzNy4wMzggMzkuMzEzIDM3LjAyMiA0Mi4zMjYiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTkuMDAxIDQyLjMxIDIyLjAwMSA0Mi4zMSAyMi4wMDEgMzEuNyAyNy45OCAzNi4zMSAzNC4wMDEgMzEuNyAzNC4wMDEgNDIuMzEgMzcuMDIyIDQyLjMyNiAzNy4xMDMgMjcuMzEgMzQuMDAxIDI3LjMxIDI3LjkzMiAzMS45MDMgMjIuMDAxIDI3LjMxIDE5LjAwMSAyNy4zMSAxOS4wMDEgNDIuMzEiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-305"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/bf82e6b26456494cbdd197057c09979f/Cloud/${locale}"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]}},{"name":"sapappstudio","displayName":"SAP Business Application Studio","description":"SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications.","businessCategory":{"id":"APPLICATION_DEVELOPMENT_AND_AUTOMATION","displayName":"Application Development and Automation"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard-edition","displayName":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","uniqueIdentifier":"sapappstudio-standard-edition","provisioningMethod":"NONE_REQUIRED","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"sapappstudio-standard-edition-SYSTEM","productDisplayName":"SAP Business Application Studio deprecated - SAP Business Application Studio","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu21","displayName":"Europe (Netherlands) Azure Multi-AZ Test internal","region":"eu21","environment":"cloudfoundry","iaasProvider":"AZURE","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu21.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu21.hana.ondemand.com","domain":"eu21.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"STANDARD"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpb19mb3JtZXJfV2ViX0lERV8iIGRhdGEtbmFtZT0ic2FwLWFwcGxpY2F0aW9uLXN0dWRpbyAoZm9ybWVyIFdlYiBJREUpIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwNTNiNzA7fS5jbHMtMntmaWxsOiMwYTZlZDE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtYXBwbGljYXRpb24tc3R1ZGlvPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzAuMzA1IDIyLjExNCAyOC42MTggMjEuMDQzIDI2Ljk0MiAxOS45OCAyNi40NjQgMTkuNjc3IDI1LjkwMiAxOS4zMjUgMjUuMzE2IDE5LjYzNSA1LjgwNiAyOS45NjQgNS4yNTEgMzAuMjU5IDUuMTk3IDMwLjg4MyA0Ljk5NSAzMy4yNDcgNC44MTkgMzUuMzI0IDYuNjY2IDM0LjM2NCAyOC41MzQgMjMuMDMyIDMwLjMwNSAyMi4xMTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iNy4yNTkgMjYuODI3IDIyLjE3OSAxOC45ODkgMjMuOTQzIDE4LjA2MyAyMi4yNiAxNi45OTkgMjAuMTYzIDE1LjY3NiAxOS42MDkgMTUuMzI0IDE5LjAyMyAxNS42MyA2LjQyMiAyMi4xNiA1Ljg2MyAyMi40NTEgNS44MSAyMy4wODIgNS41OCAyNS43MTQgNS4zOTYgMjcuODAzIDUuNCAyNy44MDMgNy4yNTkgMjYuODI3Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQ5LjQxNCAyMi4yMjkgMjcuNjQ2IDMzLjc0IDI1LjgwNiAzNC43MTQgMjcuNjEyIDM1Ljc0OSAyOS42NyAzNi45MzUgMzAuMjEzIDM3LjI0NSAzMC43NjggMzYuOTU4IDUwLjM3NCAyNi44MDggNTAuOTYzIDI2LjUwMiA1MC45OTQgMjUuODQgNTEuMDE3IDI1LjI3NCA1MS4wOTcgMjMuMjg5IDUxLjE4MSAyMS4yOTYgNDkuNDE0IDIyLjIyOSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyNS44MDIgMzQuNzE2IDI1LjgwNiAzNC43MTQgMjUuODAyIDM0LjcxMiAyNS44MDIgMzQuNzE2Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjM0LjE2NSAzNy41NTQgMzIuMzA2IDM4LjUyMiAzNC4xMjcgMzkuNTY3IDM2LjQyMiA0MC44NzkgMzYuOTY5IDQxLjE5MyAzNy41MjggNDAuODk4IDUwLjA3MiAzNC4yNjQgNTAuNjUzIDMzLjk1OCA1MC42OCAzMy4zIDUwLjc4NyAzMC44MjUgNTAuODc1IDI4LjgzNiA0OS4xMTIgMjkuNzU4IDM0LjE2NSAzNy41NTQiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMTcuMTI2IDMxLjg1NCAxNi41NzkgMzEuNTM3IDE2LjAyIDMxLjgyOCAxMy42NzUgMzMuMDQ0IDExLjgxMiAzNC4wMTIgMTMuNjI5IDM1LjA2IDI4LjIzNSA0My40NTQgMjkuOTYxIDQ0LjQ0OCAyOS45NjEgNDIuNDU5IDI5Ljk2MSAzOS4zMjIgMjkuMzkxIDM4Ljk4OSAxNy4xMjYgMzEuODU0Ii8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjIwNSAzNS41MTUgOS42NjIgMzUuMjA2IDkuMTA3IDM1LjQ5MiA2Ljk5OSAzNi41OSA1LjE1MiAzNy41NTQgNS4xNDggMzcuNTYyIDYuOTUgMzguNjEgMjguMjM1IDUwLjk5OCAyOS45NjEgNTIgMjkuOTYxIDQ2Ljc4OSAyOS4zODMgNDYuNDYxIDEwLjIwNSAzNS41MTUiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMjguMTQzIDEyLjcwMyAyNi4zODQgMTEuNTU2IDI2LjM2NSAxMS41NTYgMjYuMzY1IDEzLjY1NiAyNi4zNDIgMTYuMjk5IDI2LjM0MiAxNi45MzEgMjYuODczIDE3LjI3MSAzOC43OTQgMjQuOTggMzkuMzQ1IDI1LjMzNSAzOS45MzQgMjUuMDM3IDQyLjE0NSAyMy45MDkgNDMuOTIgMjMuMDA5IDQyLjI1NiAyMS45MjMgMjguMTQzIDEyLjcwMyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI0OC45NjYgMTguNDk5IDI4LjI3IDUuMTQ0IDI2LjUyMSA0LjAxNSAyNi40OTUgNCAyNi40OTUgNi4wODUgMjYuNDcyIDguNDYxIDI2LjQ3MiA5LjA4NCAyNi45OTYgOS40MjkgNDUuNDM5IDIxLjU2IDQ1Ljk5OCAyMS45NDIgNDYuNTkxIDIxLjY0IDQ3LjA5NiAyMS4zODQgNDguODYzIDIwLjQ4NSA1MC42NDIgMTkuNTgyIDQ4Ljk2NiAxOC40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-393"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP%20Business%20Application%20Studio/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/business-application-studio"}],"serviceCategories":[{"name":"Application Development and Automation"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu21"}],"CFService":{"name":"sapappstudio","plans":[{"technicalName":"standard-edition","name":"standard-edition","description":"Develop applications in preconfigured dev spaces for productive development.","metadata":{"bullets":[]}}]}}},{"name":"cias","displayName":"Cloud Integration Automation","description":"Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"standard","displayName":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","uniqueIdentifier":"cias-standard","provisioningMethod":"NONE_REQUIRED","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"APPLICATION","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false},{"name":"oauth2","displayName":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","uniqueIdentifier":"cias-oauth2","provisioningMethod":"SERVICE_BROKER","amount":1,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"FREE","productDisplayName":"FREE","amount":1,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":true}],"dataCenters":[{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}}},{"name":"azure-openai-service-demo","displayName":"LLM Access Service (Preview)","description":"A centralized BTP-native service for accessing LLM APIs","businessCategory":{"id":"AI","displayName":"AI"},"ownerType":"VENDOR","termsOfUseUrl":"N/A","servicePlans":[{"name":"default","displayName":"Default","description":"Provides basic access to the LLM APIs","uniqueIdentifier":"azure-openai-service-demo-default","provisioningMethod":"SERVICE_BROKER","amount":1.0,"remainingAmount":1.0,"providedBy":"VENDOR","beta":false,"availableForInternal":false,"internalQuotaLimit":null,"autoAssign":false,"autoDistributeAmount":null,"maxAllowedSubaccountQuota":null,"category":"ELASTIC_SERVICE","sourceEntitlements":[{"entitlementName":"azure-openai-service-demo-default-SYSTEM","productDisplayName":"Azure OpenAI Service Demo - default","amount":1.0,"productId":null,"restricted":false,"allowedSubaccounts":null,"commercialModel":{"name":"Subscription","displayName":"Subscription","consumptionBased":false,"description":"Subscription-based commercial model"},"autoAssign":false}],"dataCenters":[{"name":"cf-eu10-canary","displayName":"Europe (Frankfurt) - Canary","region":"eu10-canary","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":true,"provisioningServiceUrl":"https://provisioning-service.cfapps.sap.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.sap.hana.ondemand.com","domain":"sap.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"},{"name":"cf-eu12","displayName":"cf-eu12","region":"eu12","environment":"cloudfoundry","iaasProvider":"AWS","supportsTrial":false,"provisioningServiceUrl":"https://provisioning-service.cfapps.eu12.hana.ondemand.com","saasRegistryServiceUrl":"https://saas-manager.cfapps.eu12.hana.ondemand.com","domain":"eu12.hana.ondemand.com","isMainDataCenter":true,"geoAccess":"BACKWARD_COMPLIANT_EU_ACCESS"}],"resources":null,"dependsOn":null,"additionalPlanFeatures":[],"assignedResources":null,"assignedBillingObject":null,"billingObjects":null,"unlimited":false}],"iconBase64":"PHN2ZyBpZD0iYWktY29yZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDpub25lO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO30uY2xzLTN7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjciIHk9IjE2IiB3aWR0aD0iNDIiIGhlaWdodD0iNiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNyIgeT0iNyIgd2lkdGg9IjQyIiBoZWlnaHQ9IjYiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMy45NjYsNDkuNjgxdi0uMDFIMjIuODgxYTIuMjY5LDIuMjY5LDAsMCwxLTIuMjExLTIuMzI4VjQzLjIwNmE0LjUxMyw0LjUxMywwLDAsMC0xLjQ4OC0zLjFBNC43MTYsNC43MTYsMCwwLDAsMjAuNjcsMzdWMzIuNjU3YTIuMjY5LDIuMjY5LDAsMCwxLDIuMjExLTIuMzI4aDEuMDg1di0uMDFhMS4xNiwxLjE2LDAsMCwwLDAtMi4zMDlWMjhIMjIuODc0YTQuNTM4LDQuNTM4LDAsMCwwLTQuNDE1LDQuNjU2VjM3YTIuMTU4LDIuMTU4LDAsMCwxLTEuNTkyLDEuODE5di4wMmExLjMxLDEuMzEsMCwwLDAsMCwyLjQ1NHYuMDE2YTIuMjYxLDIuMjYxLDAsMCwxLDEuNTkyLDEuOXY0LjEzN0E0LjUzOCw0LjUzOCwwLDAsMCwyMi44NzQsNTJoMS4wOTJ2LS4wMWExLjE2LDEuMTYsMCwwLDAsMC0yLjMwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MS45OTEsMzkuOTM4YTEuMjg1LDEuMjg1LDAsMCwwLS44NTItMS4yMjdWMzguN2EyLjI2MywyLjI2MywwLDAsMS0xLjU5Mi0xLjlWMzIuNjU3QTQuNTM3LDQuNTM3LDAsMCwwLDQ1LjEzMywyOEg0NC4wNHYuMDFhMS4xNiwxLjE2LDAsMCwwLDAsMi4zMDl2LjAxaDEuMDg2YTIuMjY4LDIuMjY4LDAsMCwxLDIuMjEsMi4zMjh2NC4xMzdhNC41MTgsNC41MTgsMCwwLDAsMS40ODksMy4xQTQuNzE3LDQuNzE3LDAsMCwwLDQ3LjMzNiw0M3Y0LjMzOWEyLjI2OCwyLjI2OCwwLDAsMS0yLjIxLDIuMzI4SDQ0LjA0di4wMWExLjE2LDEuMTYsMCwwLDAsMCwyLjMwOVY1MmgxLjA5M2E0LjUzNyw0LjUzNywwLDAsMCw0LjQxNC00LjY1NlY0M2EyLjE1OCwyLjE1OCwwLDAsMSwxLjU5Mi0xLjgxOXYtLjAyQTEuMjg2LDEuMjg2LDAsMCwwLDUxLjk5MSwzOS45MzhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDExLjEyNWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTMuMDExLDIwLjFoLTNhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1aDNhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjAxLDI5LjA2NWgtM2ExLjEyNSwxLjEyNSwwLDAsMSwwLTIuMjVoM2ExLjEyNSwxLjEyNSwwLDEsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTIsMjJWN2EzLjAwOSwzLjAwOSwwLDAsMC0zLTNIN0EzLjAwOSwzLjAwOSwwLDAsMCw0LDdWMzFhMy4wMDksMy4wMDksMCwwLDAsMywzaDUuNjM1YTEuNSwxLjUsMCwwLDAsMC0zSDdWMjVINDlBMywzLDAsMCwwLDUyLDIyWk03LDdINDl2Nkg3Wm0wLDlINDl2Nkg3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNDIuNjc4QTIuNjc1LDIuNjc1LDAsMCwxLDMxLjkyOCw0MGEuNzUuNzUsMCwxLDEsMS41LDAsMS4xNzMsMS4xNzMsMCwwLDAsLjM0Mi44MzIsMS4yMTEsMS4yMTEsMCwwLDAsMS42NjUsMCwxLjE3NywxLjE3NywwLDAsMC0uODMtMi4wMTMuNzUuNzUsMCwxLDEsMC0xLjVBMi42ODEsMi42ODEsMCwwLDEsMzcuMjgzLDQwLDIuNjgsMi42OCwwLDAsMSwzNC42LDQyLjY3OFoiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNC42LDQ2LjI2N2E2LjI2Nyw2LjI2NywwLDAsMS00LjQyOS0xMC43LDYuNDIzLDYuNDIzLDAsMCwxLDguODYyLDBBNi4yMjYsNi4yMjYsMCwwLDEsNDAuODcyLDQwYTEuMTI1LDEuMTI1LDAsMCwxLTIuMjUsMCwzLjk3NywzLjk3NywwLDAsMC0xLjE3NS0yLjgzOSw0LjExMyw0LjExMywwLDAsMC01LjY4LDBBNC4wMTksNC4wMTksMCwwLDAsMzQuNiw0NC4wMTdhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTM0LjYsNTAuMTI1YTEwLjA3MSwxMC4wNzEsMCwwLDEtNy4xNi0yLjk2NSwxLjEyNywxLjEyNywwLDAsMSwxLjU5NC0xLjU5NCw4LjA1NSw4LjA1NSwwLDAsMCwxMS4xMzMsMCw3Ljc5Miw3Ljc5MiwwLDAsMCwxLjI1Ny0xLjYyOCwxLjEyNSwxLjEyNSwwLDEsMSwxLjk0NSwxLjEzQTEwLjE1MywxMC4xNTMsMCwwLDEsMzQuNiw1MC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMjUuNjA1LDQxLjEyNUExLjEyNSwxLjEyNSwwLDAsMSwyNC40OCw0MGExMC4wNzEsMTAuMDcxLDAsMCwxLDIuOTY1LTcuMTYsMTAuMzgxLDEwLjM4MSwwLDAsMSwxNC4zMjEsMCwxLjEyNywxLjEyNywwLDAsMS0xLjU5NCwxLjU5NCw4LjA1NSw4LjA1NSwwLDAsMC0xMS4xMzMsMEE3LjgxMyw3LjgxMywwLDAsMCwyNi43Myw0MCwxLjEyNSwxLjEyNSwwLDAsMSwyNS42MDUsNDEuMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/AI_CORE/INTERNAL/en-US"}],"serviceCategories":[{"name":"AI"}],"regionInformation":[{"key":"cf-eu12"},{"key":"cf-eu10-canary"}],"CFService":{"name":"azure-openai-service-demo","plans":[{"technicalName":"default","name":"Default","description":"Provides basic access to the LLM APIs","metadata":{"bullets":[]}}]}}}],"assignedServices":[{"name":"feature-flags-dashboard","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"dashboard","displayName":"dashboard","uniqueIdentifier":"feature-flags-dashboard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481771,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags-dashboard","plans":[{"technicalName":"dashboard","name":"dashboard","description":"View and manage Feature Flags Service instances.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"destination","displayName":"Destination Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"destination-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481607,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iZGVzdGluYXRpb24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRlc3RpbmF0aW9uPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOSw1MkgxMC4wOTRhMy4wNzIsMy4wNzIsMCwwLDEtMi4yLS44NDRBMi44MzcsMi44MzcsMCwwLDEsNyw0OVYxNkwxOSw0SDQwYTIuODQxLDIuODQxLDAsMCwxLDIuMTU2Ljg5MUEyLjk2MiwyLjk2MiwwLDAsMSw0Myw3djNINDBWN0gyMnY5YTIuODQ0LDIuODQ0LDAsMCwxLS44OTEsMi4xNTZBMi45NjIsMi45NjIsMCwwLDEsMTksMTlIMTBWNDloOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNy45MzgsNDEuODYzLDI0LjcxNiw0MC4ybC0yLjAyNCwxLjg1OUwyMC4xMTUsMzkuNTJsMS43NjQtMS43NjQtMS4zNjctMy41MjdMMTgsMzQuMmwwLTMuNTc2aDIuNDc5bDEuNDctMy41NTEtMS44MzQtMS44NDUsMi41My0yLjU3NCwxLjkxMiwxLjkxMSwzLjM4MS0xLjQtLjAxNS0yLjc1NCwzLjc2NS4wMTd2Mi43MzdsMy4zOCwxLjRMMzcuMDg0LDIyLjgsMzkuNTEsMjUuNDhsLTEuNzY0LDEuNzY0LDEuNCwzLjM4MSwyLjY2Ni4xODdWMzIuNWgzVjMwLjgxMmEzLjEyNSwzLjEyNSwwLDAsMC0zLjE4OC0zLjE4N2gtLjAybC4wODItLjA3OWEzLjI3NSwzLjI3NSwwLDAsMCwuODU4LTIuMjE4LDMuMDc2LDMuMDc2LDAsMCwwLS45MTQtMi4yMjFsLTIuNDI2LTIuNDI1YTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLS4wMjMuMDIzdi0uMDE3QTMuMTI1LDMuMTI1LDAsMCwwLDMxLjUsMTcuNUgyOC4xMjVhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODh2LjAxN2wtLjAyNC0uMDIzYTMuMjYxLDMuMjYxLDAsMCwwLTQuNDk0LDBsLTIuNDI2LDIuNDI1YTMuMDgsMy4wOCwwLDAsMC0uOTE0LDIuMjIxLDMuMzA5LDMuMzA5LDAsMCwwLC45MTQsMi4yNzRsLjAyNC4wMjNIMThhMy4xMjMsMy4xMjMsMCwwLDAtMy4xODcsMy4xODd2My4zNzZhMy4xNzcsMy4xNzcsMCwwLDAsLjg4NCwyLjIxNywzLjA4OCwzLjA4OCwwLDAsMCwyLjMuOTdoLjAxOGwtLjAyNC4wMjNhMy4yMiwzLjIyLDAsMCwwLDAsNC40OTVsMi40MjYsMi40MjVhMy4yNDUsMy4yNDUsMCwwLDAsNC41MTgtLjAyM3YuMDE3YTMuMTc4LDMuMTc4LDAsMCwwLC44ODQsMi4yMTgsMy4wODgsMy4wODgsMCwwLDAsMi4zLjk3aDEuNjg4di0zbC0xLjg3NS0uMTg4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI5LjgxMywyOS41QTIuOTU4LDIuOTU4LDAsMCwxLDMyLjM1MiwzMUgzNS42YTUuOTg3LDUuOTg3LDAsMSwwLTcuMjg2LDcuMjg3VjM1LjAzOWEyLjk1NiwyLjk1NiwwLDAsMS0xLjUtMi41MzlBMywzLDAsMCwxLDI5LjgxMywyOS41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQzLjg2OSw0NS4yNzhsLjI2NC0uMjY1YTQuNTE0LDQuNTE0LDAsMCwwLDAtNi4zNjVMNDAuNzgxLDM1LjNhNC41MTYsNC41MTYsMCwwLDAtNi4zNjYsMGwtLjI2NC4yNjUtMy4xNjctMy4xNjctMS41OTEsMS41OTEsMy4xNjcsMy4xNjctLjI2NS4yNjRhNC41MTYsNC41MTYsMCwwLDAsMCw2LjM2NmwzLjM1MywzLjM1MmE0LjUxNSw0LjUxNSwwLDAsMCw2LjM2NSwwbC4yNjUtLjI2NEw0Ny40MDksNTIsNDksNTAuNDA5Wk0zNC42NDEsNDMuMmwtLjctLjdhMi40LDIuNCwwLDAsMSwwLTMuMzgxbDIuMTc3LTIuMTc2YTIuNCwyLjQsMCwwLDEsMy4zOCwwbC43LjdabTcuODQ0LjExLTIuMTc3LDIuMTc2YTIuNCwyLjQsMCwwLDEtMy4zOCwwbC0uNy0uNyw1LjU1Ny01LjU1Ny43LjdBMi40LDIuNCwwLDAsMSw0Mi40ODUsNDMuMzA4WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-11"},{"key":"SERVICE-171"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/cca91383641e40ffbe03bdc78f00f681/Cloud/en-US/34010ace6ac84574a4ad02f5055d3597.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/destination"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"destination","description":"Retrieve information about destinations in the Cloud Foundry environment.","metadata":{"displayName":"Destination Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Shared resources across all apps","metadata":{"bullets":["Shared resources across all consumers"]}}]}},"ownerType":"VENDOR"},{"name":"connectivity","displayName":"Connectivity Service","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"connectivity-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481531,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWhhbmEtY2xvdWQtY29ubmVjdG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NiA1NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwYTZlZDE7fS5jbHMtMntmaWxsOiMwNTNiNzA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5zYXAtaGFuYS1jbG91ZC1jb25uZWN0b3I8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQxLjUsNDloLTlhMS41LDEuNSwwLDAsMCwwLDNoOWExLjUsMS41LDAsMCwwLDAtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OC45OTEsMjVIMjUuMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDIyLDI4LjAwOVY0Mi45OTFBMy4wMDksMy4wMDksMCwwLDAsMjUuMDA5LDQ2SDQ4Ljk5MUEzLjAwOSwzLjAwOSwwLDAsMCw1Miw0Mi45OTFWMjguMDA5QTMuMDA5LDMuMDA5LDAsMCwwLDQ4Ljk5MSwyNVptMCwxOEwyNSw0Mi45OTEsMjUuMDA5LDI4SDQ4Ljk5MWwuMDA5LjAwOVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOS4xMDksN2E2LjQ1NSw2LjQ1NSwwLDAsMSw1Ljg2NCw0LjAzM2wxLjMwNywzLjI5TDI5LjMxLDEyLjVhMy45MjIsMy45MjIsMCwwLDEsMi4wNDMtLjU5MSwzLjk4OCwzLjk4OCwwLDAsMSwzLjkxNCwzLjI0OWwuMjg4LDEuNTI5LDEuNDE1LjY0NmE1LjM1MSw1LjM1MSwwLDAsMSwzLDQuNjdINDNhOC4zNTUsOC4zNTUsMCwwLDAtNC43ODUtNy40QTYuOTQxLDYuOTQxLDAsMCwwLDI3Ljc2Miw5LjkyOCw5LjQ1Miw5LjQ1MiwwLDAsMCwxOS4wNTUsNEM4LjY1LDQsOS44LDE0LjYyMSw5LjgsMTQuNjIxQTguMzg3LDguMzg3LDAsMCwwLDEyLjQxLDMwLjk4NkgxOXYtM0gxMi40MWE1LjM4Nyw1LjM4NywwLDAsMS0xLjY3NS0xMC41MTVsMi4zMDgtLjc1OUwxMi43ODEsMTQuM2E4LjEsOC4xLDAsMCwxLDEuNS01LjI4NEE2LjUsNi41LDAsMCwxLDE5LjEwOSw3WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","marketingLinkPublic":{"infoText":"Learn more about this service and how to purchase it.","urlLabel":"Further information","url":"https://cloudplatform.sap.com/capabilities/integration/cloud-connector.html"},"inventoryIds":[{"key":"SERVICE-37"},{"key":"SERVICE-50"},{"key":"SERVICE-169"}],"serviceConfiguration":[{"title":"Go to Destinations","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/destinations"}},{"title":"Go to Cloud Connectors","type":"ext","propagateTheme":"false","ext":{"externalLinkURL":"/cockpit#/acc/${consumerAccountName}/connectivity"}}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e54cc8fbbb571014beb5caaf6aa31280.html"},{"title":"Documentation - Cloud Connector","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e6c7616abb5710148cfcf3e75d96d596.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/connectivity-service"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"},{"key":"neo-eu2-canary"}],"CFService":{"name":"connectivity","description":"Establish connections between cloud applications and on-premise systems.","metadata":{"displayName":"Connectivity Service"},"plans":[{"technicalName":"connectivity_proxy","name":"connectivity_proxy","description":"Pair Connectivity Proxy with SAP CP Connectivity service for establishing secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity Proxy to be used as a dedicated or shared resource"]}},{"technicalName":"lite","name":"lite","description":"Allow cloud applications to establish secure connections to on-premise systems through SAP Cloud Connector","metadata":{"bullets":["Connectivity established via shared service resources for all applications"]}}]}},"ownerType":"VENDOR"},{"name":"application-logs","displayName":"Application Logging Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"lite","displayName":"lite","uniqueIdentifier":"application-logs-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481432,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwbG9nZ2luZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDUzYjcwO30uY2xzLTJ7ZmlsbDojMGE2ZWQxO308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXBwbG9nZ2luZzwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzYuNjc4LDE2Ljc2MmwtMi45LTIuOWEuOTQyLjk0MiwwLDAsMC0xLjQxOCwwTDE1LjUzNywzMC42MTlhNy4zMTcsNy4zMTcsMCwwLDAtLjQxOSwxLjA2NGMtLjIzOC42NjYtLjUwNSwxLjM4NS0uODA2LDIuMTU5UTEzLjgsMzUuMjYxLDEzLjIxNywzN3ExLjgtLjUxNiwzLjI4Ny0uOTY3LDEuMjg3LS4zMjMsMi4zMi0uNjQ0QTcuMzYzLDcuMzYzLDAsMCwwLDE5LjkyLDM1TDM2LjY3OCwxOC4xOGEuOTQyLjk0MiwwLDAsMCwwLTEuNDE4Wk0xOC43NiwzMy4ybC0xLjQ4My0xLjQxOEwyOS4wMDgsMjAuMTEzbDEuNDE4LDEuNDE4Wk0zMS45MDgsMjAuMTEzbC0xLjQ4Mi0xLjQ4MiwyLjY0Mi0yLjU3OCwxLjQxOCwxLjQxOFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03LDE2aDYuOTM4YTIuMDQsMi4wNCwwLDAsMCwxLjQ1LS41OEExLjk1NSwxLjk1NSwwLDAsMCwxNiwxMy45MzhWN2g5djZoM1Y2LjA2MmEyLjA0LDIuMDQsMCwwLDAtLjU4LTEuNDVBMS45NTgsMS45NTgsMCwwLDAsMjUuOTM4LDRIMTIuMjVMNCwxMi4yNVYzNC45MzhhMS45NTEsMS45NTEsMCwwLDAsLjYxMiwxLjQ4MkEyLjExNSwyLjExNSwwLDAsMCw2LjEyNywzN2g0LjA2MVYzNEg3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDUuNTcxIiB5PSIyMiIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjI1LjcxNCIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzOC40MjkiIHk9IjM0Ljg1NyIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjEyLjg1NyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIzMS4yODYiIHk9IjMwLjU3MSIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjE3LjE0MyIgcng9IjAuNTM2Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSIyNC4xNDMiIHk9IjQzLjQyOCIgd2lkdGg9IjQuMjg2IiBoZWlnaHQ9IjQuMjg2IiByeD0iMC41MzYiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjIyIiB5PSI0OS44NTciIHdpZHRoPSIzMCIgaGVpZ2h0PSIyLjE0MyIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-81"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/APPLICATION_LOGGING/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/application-logging-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"neo-eu1-canary"}],"CFService":{"name":"application-logs","description":"Create, store, access, and analyze application logs.","metadata":{"displayName":"Application Logging Service"},"plans":[{"technicalName":"lite","name":"lite","description":"Free offering for development purposes","metadata":{}},{"technicalName":"large","name":"large","description":"Large Service Plan","metadata":{}},{"technicalName":"standard","name":"standard","description":"Standard Service Plan","metadata":{}}]}},"ownerType":"VENDOR"},{"name":"service-manager","displayName":"Service Manager","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"service-operator-access","displayName":"service-operator-access","uniqueIdentifier":"service-manager-service-operator-access","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481501,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-audit","displayName":"subaccount-audit","uniqueIdentifier":"service-manager-subaccount-audit","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481786,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"subaccount-admin","displayName":"subaccount-admin","uniqueIdentifier":"service-manager-subaccount-admin","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481818,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"container","displayName":"container","uniqueIdentifier":"service-manager-container","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481832,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iTGF5ZXJfMjI5IiBkYXRhLW5hbWU9IkxheWVyIDIyOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTYgNTYiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMGE2ZWQxO30uY2xzLTJ7ZmlsbDojMDUzYjcwO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOCw3YTMsMywwLDEsMS0zLDMsMywzLDAsMCwxLDMtM20wLTNhNiw2LDAsMSwwLDYsNiw2LjAwNyw2LjAwNywwLDAsMC02LTZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjgsNDNhMywzLDAsMSwxLTMsMywzLDMsMCwwLDEsMy0zbTAtM2E2LDYsMCwxLDAsNiw2LDYuMDA3LDYuMDA3LDAsMCwwLTYtNloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMywyNXY2SDdWMjVoNm0zLTNINFYzNEgxNlYyMloiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00OSwyNXY2SDQzVjI1aDZtMy0zSDQwVjM0SDUyVjIyWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTM3LDI2LjEyNUE3LjEzMyw3LjEzMywwLDAsMSwyOS44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTQuODc5LDQuODc5LDAsMCwwLDM3LDIzLjg3NWExLjEyNSwxLjEyNSwwLDAsMSwwLDIuMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTksMjYuMTI1YTEuMTI1LDEuMTI1LDAsMCwxLDAtMi4yNUE0Ljg3OSw0Ljg3OSwwLDAsMCwyMy44NzUsMTlhMS4xMjUsMS4xMjUsMCwwLDEsMi4yNSwwQTcuMTMzLDcuMTMzLDAsMCwxLDE5LDI2LjEyNVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yNSwzOC4xMjVBMS4xMjUsMS4xMjUsMCwwLDEsMjMuODc1LDM3LDQuODgsNC44OCwwLDAsMCwxOSwzMi4xMjVhMS4xMjUsMS4xMjUsMCwwLDEsMC0yLjI1QTcuMTMzLDcuMTMzLDAsMCwxLDI2LjEyNSwzNywxLjEyNSwxLjEyNSwwLDAsMSwyNSwzOC4xMjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzEsMzguMTI1QTEuMTI1LDEuMTI1LDAsMCwxLDI5Ljg3NSwzNyw3LjEzMyw3LjEzMywwLDAsMSwzNywyOS44NzVhMS4xMjUsMS4xMjUsMCwwLDEsMCwyLjI1QTQuODgsNC44OCwwLDAsMCwzMi4xMjUsMzcsMS4xMjUsMS4xMjUsMCwwLDEsMzEsMzguMTI1WiIvPjwvc3ZnPg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-324"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/f13b6c63eef341bc8b7d25b352401c92.html"},{"title":"Working with SAP BTP Service Operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/09cc82baadc542a688176dce601398de/Cloud/en-US/0ccebd7cec24411dacd5ad17799534e0.html"},{"title":"Install SAP BTP service operator","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://operatorhub.io/operator/sap-btp-operator"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"service-manager","description":"SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments.","metadata":{"displayName":"Service Manager"},"plans":[{"technicalName":"subaccount-admin","name":"subaccount-admin","description":"Allows management of resources in the subaccount in which the service instance of this plan was created. This includes managing service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-admin"}},{"technicalName":"subaccount-audit","name":"subaccount-audit","description":"Allows read-only access to the resources in the subaccount in which the service instance was created. This includes reading service instances, bindings and subaccount-scoped platforms.","free":"true","metadata":{"displayName":"subaccount-audit"}},{"technicalName":"container","name":"container","description":"Allows management of service instances and bindings in a reduced scope corresponding to the service instance. Instances created using the container instance binding credentials are visible from the instance itself and from instances of the subaccount-* plans, but not from other container instances.","free":"true","metadata":{"displayName":"container"}},{"technicalName":"service-operator-access","name":"service-operator-access","description":"Provides credentials for SAP BTP service operator to access SAP BTP from a Kubernetes cluster.","metadata":{"displayName":"service-operator-access"}}]}},"ownerType":"VENDOR"},{"name":"autoscaler","displayName":"Application Autoscaler","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"autoscaler-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481667,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0iYXBwYXV0b3NjYWxpbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFwcGF1dG9zY2FsaW5nPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMy43LDQyLjNhMi4zMzMsMi4zMzMsMCwwLDAsMS44NDcuNzExbDkuOTQ3LS4yODRBMS4xODksMS4xODksMCwwLDAsMjYuOCw0MS40MnEuMDU3LTEuMzA4LTEuMzA3LTEuMzA3bC04LjEyOC40LDIzLjEzLTIzLjEzLS40LDguMTI4YTEuMzA4LDEuMzA4LDAsMSwwLDIuNjE1LDBMNDMsMTUuNTYyQTIuNDM1LDIuNDM1LDAsMCwwLDQwLjQzOCwxM2wtOS44OS4zNDFhMS4zMDgsMS4zMDgsMCwxLDAsMCwyLjYxNWw4LjEyOC0uNC0yMy4xMywyMy4xM0wxNiwzMC42MnEuMDU1LTEuMzA4LTEuMzA4LTEuMzA3YTEuMTg5LDEuMTg5LDAsMCwwLTEuMzA3LDEuMzA3bC0uNCw5LjgzNEEyLjMzMywyLjMzMywwLDAsMCwxMy43LDQyLjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDguMTU2LDcuODkxQTIuODQ4LDIuODQ4LDAsMCwwLDQ2LDdIMTlhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDE2LDEwVjI4aDNWMTBINDZWMzdIMjh2M0g0NmEyLjg4OSwyLjg4OSwwLDAsMCwzLTNWMTBBMi45NjIsMi45NjIsMCwwLDAsNDguMTU2LDcuODkxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI4LDQ2SDEwVjI4aDNWMjVIMTBhMi44NDQsMi44NDQsMCwwLDAtMi4xNTYuODkxQTIuOTYyLDIuOTYyLDAsMCwwLDcsMjhWNDZhMi44ODksMi44ODksMCwwLDAsMywzSDI4YTIuODg5LDIuODg5LDAsMCwwLDMtM1Y0M0gyOFoiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-177"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/7472b7d13d5d4862b2b06a730a2df086/Cloud/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu1"},{"key":"cf-us10"},{"key":"cf-us20"},{"key":"cf-br10"},{"key":"cf-us30"},{"key":"cf-jp10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-eu20"}],"CFService":{"name":"autoscaler","description":"Automatically increase or decrease the number of application instances.","metadata":{"displayName":"Application Autoscaler"},"plans":[{"technicalName":"lite","name":"lite","description":"This plan allows four scaling rules and two schedules per policy document","metadata":{"bullets":["Dynamic scaling based on application metrics","1 policy with 4 scaling rules and 2 schedules"]}}]}},"ownerType":"VENDOR"},{"name":"saas-registry","displayName":"SaaS Provisioning Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"saas-registry-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481576,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2Fhcy1wcm92aXNpb25pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzA1M2I3MDt9LmNscy0ye2ZpbGw6IzBhNmVkMTt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDUuODMyLDE2Ljk1N2E4LjQ4NCw4LjQ4NCwwLDAsMC0xMi43NzctNS43MTFBMTAuNzQzLDEwLjc0MywwLDAsMCwyMi40MTMsNEMxMC4wMDgsNCwxMS4xLDE2Ljk4MiwxMS4xLDE2Ljk4MkExMC4yNDcsMTAuMjQ3LDAsMCwwLDQuMDEsMjYuNzA2YTEwLjM2LDEwLjM2LDAsMCwwLDYsOS4zODZWMzIuNTg2YTcuMjMxLDcuMjMxLDAsMCwxLDIuMDI2LTEyLjc1NWwyLjI3OC0uNzY3LS4yODctMS41YTcuNTk0LDcuNTk0LDAsMCwxLS4xMjQtMi4wNzMsMTAuNTM0LDEwLjUzNCwwLDAsMSwyLjE4OC01LjgyNSw3LjM3Miw3LjM3MiwwLDAsMSw2LjM5My0yLjgyM2MzLjI2MywwLDcuMjgzLDIuOSw4LjIxOCw1LjYzM2wuOTM0LDIuNzMxLDIuNDIyLTEuMzE3QTcuNiw3LjYsMCwwLDEsMzcuNDQ1LDEzYTUuNTQyLDUuNTQyLDAsMCwxLDUuNDQsNC41MTZsLjI4OCwxLjUyOCwxLjEyNS41MTNhNy44MDcsNy44MDcsMCwwLDEsNC41ODQsNS42NDEsNy43NDIsNy43NDIsMCwwLDEtMi44OSw3LjMxMVYzNmExMC43NTgsMTAuNzU4LDAsMCwwLDYtOS41MTNBMTAuNDc4LDEwLjQ3OCwwLDAsMCw0NS44MzIsMTYuOTU3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQwLjY4OCwyMi4wMTNIMTUuMzEyYTMuOCwzLjgsMCwwLDAtMy44LDMuOFY0OC4yQTMuODA2LDMuODA2LDAsMCwwLDE1LjMxMiw1Mkg0MC42ODhhMy44LDMuOCwwLDAsMCwzLjgwNS0zLjhWMjUuODE3QTMuOCwzLjgsMCwwLDAsNDAuNjg4LDIyLjAxM1pNNDEuNDk0LDQ4LjJhLjgwNi44MDYsMCwwLDEtLjgwNi44MDZIMTUuMzEyYS44MDYuODA2LDAsMCwxLS44MDYtLjgwNlYzNC4wMDhINDEuNDk0Wm0wLTE3LjE4NkgxNC41MDZWMjUuODE3YS44MDcuODA3LDAsMCwxLC44MDYtLjgwNkg0MC42ODhhLjgwNy44MDcsMCwwLDEsLjgwNi44MDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjgsMzUuNDg3SDE2LjAwNVY0NS45ODJIMjhabS0zLDcuNUgxOXYtNC41aDZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzguNSwyNi41MTFoLTNhMS41LDEuNSwwLDEsMCwwLDNoM2ExLjUsMS41LDAsMCwwLDAtM1oiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzUuNTA3IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iMzguNDg2IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjMwLjk5OSIgeT0iNDEuNDY0IiB3aWR0aD0iOC45OTYiIGhlaWdodD0iMS40OTkiLz48L3N2Zz4=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-380"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5e8a2b74e4f2442b8257c850ed912f48.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/saas-provisioning-service?service_plan=application®ion=all"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"},{"key":"cf-eu12"}],"CFService":{"name":"saas-registry","description":"Service for application providers to register multitenant applications and services.","metadata":{"displayName":"SaaS Provisioning Service"},"plans":[{"technicalName":"application","name":"application","description":"Service plan for SaaS application owners to manage the lifecycle of SaaS applications with SAP SaaS Provisioning APIs.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"content-agent-ui","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"free","displayName":"Free","uniqueIdentifier":"content-agent-ui-free","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481711,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"mdo-one-mds-master","displayName":"Master Data Integration (Orchestration)","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"standard","displayName":"Standard","uniqueIdentifier":"mdo-one-mds-master-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481622,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NiA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMjRfMjg2NzkpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy4wOTg1IDUyLjc2OUMyMi41MTI1IDUyLjU4NDQgMjEuOTU2MSA1Mi4yODE0IDIxLjQyOTMgNTEuODU5OUMyMC41NTQzIDUxLjE3MjQgMjAuMDIzIDUwLjI2NjIgMTkuODM1NSA0OS4xNDEyTDE5LjE3OTMgNDYuMDQ3NEwxNS4xNDgxIDQzLjYwOTlMMTIuMzM1NiA0NC44Mjg3QzExLjcxMDYgNDUuMDE2MiAxMS4xMTY4IDQ1LjEwOTkgMTAuNTU0MyA0NS4xMDk5QzkuNjc5MzEgNDUuMTA5OSA4LjgzNTU2IDQ0Ljg5MTIgOC4wMjMwNiA0NC40NTM3QzcuMjczMDcgNDQuMDE2MiA2LjY3OTMyIDQzLjM1OTkgNi4yNDE4MiA0Mi40ODQ5TDQuNDYwNTcgMzkuMDE2MkM0LjE0ODA3IDM4LjI2NjIgMy45OTE4MiAzNy41Nzg3IDMuOTkxODIgMzYuOTUzN0MzLjk5MTgyIDM1LjMyODcgNC42NDgwNyAzNC4wMTYyIDUuOTYwNTcgMzMuMDE2Mkw4LjExNjgxIDMxLjQyMjRWMjYuNTQ3NEw1Ljg2NjgyIDI0Ljg1OTlDNC42MTY4MiAyMy45MjI0IDMuOTkxODIgMjIuNjQxMiAzLjk5MTgyIDIxLjAxNjJDMy45OTE4MiAyMC4zOTEyIDQuMTQ4MDcgMTkuNzAzNyA0LjQ2MDU3IDE4Ljk1MzdMNi4yNDE4MiAxNS40ODQ5QzYuNjc5MzIgMTQuNjA5OSA3LjI3MzA3IDEzLjk1MzcgOC4wMjMwNiAxMy41MTYyQzguODM1NTYgMTMuMDc4NyA5LjY3OTMxIDEyLjg1OTkgMTAuNTU0MyAxMi44NTk5QzExLjI0MTggMTIuODU5OSAxMS44MzU2IDEyLjk4NDkgMTIuMzM1NiAxMy4yMzQ5TDE1LjE0ODEgMTQuMzU5OUwxOS4xNzkzIDExLjkyMjRMMTkuODM1NSA4LjgyODY3QzIwLjA4NTUgNy43MDM2NyAyMC42NDggNi43OTc0MiAyMS41MjMgNi4xMDk5MkMyMi4zOTggNS4zNTk5MiAyMy4zOTggNC45ODQ5MiAyNC41MjMgNC45ODQ5MkgyNy44MDQzQzI4LjkyOTMgNC45ODQ5MiAyOS45MjkzIDUuMzU5OTIgMzAuODA0MyA2LjEwOTkyQzMxLjY3OTMgNi43OTc0MiAzMi4yNDE4IDcuNzAzNjcgMzIuNDkxOCA4LjgyODY3TDMzLjA1NDMgMTEuOTIyNEwzNy4xNzkzIDE0LjM1OTlMMzkuOTkxOCAxMy4yMzQ5QzQwLjQ5MTggMTIuOTg0OSA0MS4wODU1IDEyLjg1OTkgNDEuNzczIDEyLjg1OTlDNDIuNjQ4IDEyLjg1OTkgNDMuNDYwNSAxMy4wNzg3IDQ0LjIxMDUgMTMuNTE2MkM0NS4wMjMgMTMuOTUzNyA0NS42NDggMTQuNjA5OSA0Ni4wODU1IDE1LjQ4NDlMNDcuNzczIDE4Ljk1MzdDNDguMTQ4IDE5LjU3ODcgNDguMzM1NSAyMC4yOTc0IDQ4LjMzNTUgMjEuMTA5OUM0OC4zMzU1IDIyLjY3MjQgNDcuNjc5MiAyMy45MjI0IDQ2LjM2NjcgMjQuODU5OUw0NS4xMjQxIDI1Ljc5MTlIMzUuMjEyOEMzNS4xNTQxIDI1LjYzNTggMzUuMDkwOSAyNS40ODE0IDM1LjAyMyAyNS4zMjg3QzM0LjUyMyAyNC4xNDEyIDMzLjgzNTUgMjMuMTA5OSAzMi45NjA1IDIyLjIzNDlDMzIuMDg1NSAyMS4zNTk5IDMxLjA1NDMgMjAuNjcyNCAyOS44NjY4IDIwLjE3MjRDMjguNjc5MyAxOS42NzI0IDI3LjQyOTMgMTkuNDIyNCAyNi4xMTY4IDE5LjQyMjRDMjQuODA0MyAxOS40MjI0IDIzLjU1NDMgMTkuNjcyNCAyMi4zNjY4IDIwLjE3MjRDMjEuMjQxOCAyMC42NzI0IDIwLjI0MTggMjEuMzU5OSAxOS4zNjY4IDIyLjIzNDlDMTguNDkxOCAyMy4xMDk5IDE3LjgwNDMgMjQuMTQxMiAxNy4zMDQzIDI1LjMyODdDMTYuODA0MyAyNi40NTM3IDE2LjU1NDMgMjcuNjcyNCAxNi41NTQzIDI4Ljk4NDlDMTYuNTU0MyAzMC4yOTc0IDE2LjgwNDMgMzEuNTQ3NCAxNy4zMDQzIDMyLjczNDlDMTcuODA0MyAzMy44NTk5IDE4LjQ5MTggMzQuODU5OSAxOS4zNjY4IDM1LjczNDlDMjAuMjQxOCAzNi42MDk5IDIxLjI0MTggMzcuMjk3NCAyMi4zNjY4IDM3Ljc5NzRDMjIuNjA4MSAzNy44OTkgMjIuODUyIDM3Ljk5MDMgMjMuMDk4NSAzOC4wNzEzTDIzLjA5ODUgNTIuNzY5WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMjRfMjg2NzkpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuODk4NiAzMC41OTE4QzI5LjI0MTcgMzAuNTkxOCAyNy44OTg2IDMxLjkzNDkgMjcuODk4NiAzMy41OTE4VjQ5LjkyMjNDMjcuODk4NiA1MS41NzkxIDI5LjI0MTcgNTIuOTIyMyAzMC44OTg2IDUyLjkyMjNINDguOTQ2OEM1MC42MDM2IDUyLjkyMjMgNTEuOTQ2OCA1MS41NzkxIDUxLjk0NjggNDkuOTIyM1YzMy41OTE4QzUxLjk0NjggMzEuOTM0OSA1MC42MDM2IDMwLjU5MTggNDguOTQ2OCAzMC41OTE4SDMwLjg5ODZaTTM5LjkyNDYgMzUuMTAzQzM5LjkyNDYgMzUuODYyNSAzOS4zMDkgMzYuNDc4MiAzOC41NDk0IDM2LjQ3ODJDMzcuNzg5OSAzNi40NzgyIDM3LjE3NDMgMzUuODYyNSAzNy4xNzQzIDM1LjEwM0MzNy4xNzQzIDM0LjM0MzYgMzcuNzg5OSAzMy43Mjc5IDM4LjU0OTQgMzMuNzI3OUMzOS4zMDkgMzMuNzI3OSAzOS45MjQ2IDM0LjM0MzYgMzkuOTI0NiAzNS4xMDNaTTQ0LjA0NzIgMzUuMTAzQzQ0LjA0NzIgMzUuODYyNSA0My40MzE1IDM2LjQ3ODIgNDIuNjcyIDM2LjQ3ODJDNDEuOTEyNSAzNi40NzgyIDQxLjI5NjggMzUuODYyNSA0MS4yOTY4IDM1LjEwM0M0MS4yOTY4IDM0LjM0MzYgNDEuOTEyNSAzMy43Mjc5IDQyLjY3MiAzMy43Mjc5QzQzLjQzMTUgMzMuNzI3OSA0NC4wNDcyIDM0LjM0MzYgNDQuMDQ3MiAzNS4xMDNaTTQ2Ljc5NDUgMzYuNDc4MkM0Ny41NTQgMzYuNDc4MiA0OC4xNjk3IDM1Ljg2MjUgNDguMTY5NyAzNS4xMDNDNDguMTY5NyAzNC4zNDM2IDQ3LjU1NCAzMy43Mjc5IDQ2Ljc5NDUgMzMuNzI3OUM0Ni4wMzUgMzMuNzI3OSA0NS40MTkzIDM0LjM0MzYgNDUuNDE5MyAzNS4xMDNDNDUuNDE5MyAzNS44NjI1IDQ2LjAzNSAzNi40NzgyIDQ2Ljc5NDUgMzYuNDc4MlpNMzEuMzM0IDQxLjU3MDRDMzEuMzM0IDQxLjE5MDkgMzEuNjQxNyA0MC44ODMzIDMyLjAyMTEgNDAuODgzM0g0Ny44MjQyQzQ4LjIwMzcgNDAuODgzMyA0OC41MTEzIDQxLjE5MDkgNDguNTExMyA0MS41NzA0VjQ4LjQ0NzVDNDguNTExMyA0OC44MjY5IDQ4LjIwMzcgNDkuMTM0NiA0Ny44MjQyIDQ5LjEzNDZIMzIuMDIxMUMzMS42NDE3IDQ5LjEzNDYgMzEuMzM0IDQ4LjgyNjkgMzEuMzM0IDQ4LjQ0NzVWNDEuNTcwNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDI0XzI4Njc5KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC44Njg0IDEyLjAwMSkgcm90YXRlKDQ3LjQ1NTcpIHNjYWxlKDQ1LjQwNTEgODUuNDc5OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAyNF8yODY3OSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS43MjU3IDMzLjk0MzIpIHJvdGF0ZSg0Mi44Nzg5KSBzY2FsZSgyMi45ODIgMjcuODE1NSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCQkZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwOEJGRiIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMjRfMjg2NzkiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQuOTkzNzEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/docs/SAP_MASTER_DATA_INTEGRATION/8ce78b673ef04cc1bcfeb01c93ef7885/0bed505b149b4ec6af24bf503a45708b.html?locale=en-US&version=CLOUD"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}]},"ownerType":"VENDOR"},{"name":"feature-flags","displayName":"Feature Flags Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"standard","displayName":"standard","uniqueIdentifier":"feature-flags-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481726,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"lite","displayName":"lite","uniqueIdentifier":"feature-flags-lite","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481863,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4yMDk5IDMuOTk5OTRIMjMuMjA5OUMxNy4yNDUyIDMuOTk5OTQgMTIuNDA5OSA4LjgzNTI2IDEyLjQwOTkgMTQuNzk5OUMxMi40MDk5IDIwLjc2NDYgMTcuMjQ1MiAyNS41OTk5IDIzLjIwOTkgMjUuNTk5OUg0MS4yMDk5QzQ3LjE3NDYgMjUuNTk5OSA1Mi4wMDk5IDIwLjc2NDYgNTIuMDA5OSAxNC43OTk5QzUyLjAwOTkgOC44MzUyNiA0Ny4xNzQ2IDMuOTk5OTQgNDEuMjA5OSAzLjk5OTk0Wk00MS4yMSAyMC44QzQ0LjUyMzYgMjAuOCA0Ny4yMSAxOC4xMTM3IDQ3LjIxIDE0LjhDNDcuMjEgMTEuNDg2MyA0NC41MjM2IDguNzk5OTkgNDEuMjEgOC43OTk5OUMzNy44OTYgOC43OTk5OSAzNS4yMSAxMS40ODYzIDM1LjIxIDE0LjhDMzUuMjEgMTguMTEzNyAzNy44OTYgMjAuOCA0MS4yMSAyMC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjUuNTk5OSA0MS4xOTk5QzI1LjU5OTkgNDMuNDIwMSAyNC45MyA0NS40ODM5IDIzLjc4MTIgNDcuMkgyMy43ODE0SDMyLjgwMDFDMzYuMTEzOCA0Ny4yIDM4LjgwMDEgNDQuNTEzNyAzOC44MDAxIDQxLjJDMzguODAwMSAzNy44ODYzIDM2LjExMzggMzUuMiAzMi44MDAxIDM1LjJIMjMuNzgxNEgyMy43ODEzQzI0LjkzIDM2LjkxNjEgMjUuNTk5OSAzOC45Nzk4IDI1LjU5OTkgNDEuMTk5OVpNMTQuNzk5OSA1MS45OTk5SDE0LjgwMDFWNTJIMzIuODAwMUMzOC43NjQ4IDUyIDQzLjYwMDEgNDcuMTY0NyA0My42MDAxIDQxLjJDNDMuNjAwMSAzNS4yMzUzIDM4Ljc2NDggMzAuNCAzMi44MDAxIDMwLjRIMTQuODQ5MUwxNC43OTk5IDMwLjM5OTlDOC44MzQ5NCAzMC4zOTk5IDMuOTk5OTQgMzUuMjM1MyAzLjk5OTk0IDQxLjE5OTlDMy45OTk5NCA0Ny4xNjQ0IDguODM0OTMgNTEuOTk5OSAxNC43OTk5IDUxLjk5OTlaTTE0LjgzNjcgMzUuMkMxNi4wMzcgMzUuMjA3MiAxNy4xNTM4IDM1LjU2NjkgMTguMDg4NyAzNi4xODA3QzE3LjYwMDUgMzUuODYwMiAxNy4wNjI2IDM1LjYwOSAxNi40ODkyIDM1LjQ0MTFDMTguOTgwNCAzNi4xNzA2IDIwLjc5OTkgMzguNDcyOCAyMC43OTk5IDQxLjJDMjAuNzk5OSA0NC41MTM2IDE4LjExMzUgNDcuMiAxNC43OTk5IDQ3LjJDMTEuNDg1OSA0Ny4yIDguNzk5ODcgNDQuNTEzNiA4Ljc5OTg3IDQxLjJDOC43OTk4NyAzOS4xMTU4IDkuODYyNCAzNy4yNzk5IDExLjQ3NTQgMzYuMjA0M0MxMS41NDIgMzYuMTU5OSAxMS42MDk1IDM2LjExNjggMTEuNjc3OSAzNi4wNzUxQzEyLjU4NzQgMzUuNTE5OCAxMy42NTYzIDM1LjE5OTkgMTQuNzk5OSAzNS4xOTk5SDE0LjgwMDFWMzUuMkMxNC44MDkxIDM1LjIgMTQuODE4MiAzNS4yIDE0LjgyNzIgMzUuMkgxNC44MzY3WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxMzApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MTMwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjU1MDggNy4xNzE0Nikgcm90YXRlKDI4Ljg3ODcpIHNjYWxlKDMxLjMxMDUgNTAuMDM5NCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzMCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4zMDIxIDMzLjY0MTcpIHJvdGF0ZSgyOC42MTA1KSBzY2FsZSgzMS41ODk0IDMyLjIzMzQpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAwQkJGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDhCRkYiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTMwIj4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-172"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/FEATURE_FLAGS/Cloud/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/feature-flags-service"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/5dd739823b824b539eee47b7860a00be.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"feature-flags","plans":[{"technicalName":"standard","name":"standard","description":"Enterprise-ready plan with support for different flag types, adds constraints to and keeps track on flags lifecycle.","metadata":{"bullets":["Support for different flag types and metrics"]}},{"technicalName":"lite","name":"lite","description":"Plan with basic functionality and relaxed security, excellent for development and try-out purposes (for non-productive usage).","metadata":{"bullets":["Basic on/off functionality"]}}]}},"ownerType":"VENDOR"},{"name":"xsuaa","displayName":"Authorization and Trust Management Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"xsuaa-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481469,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"broker","displayName":"Broker","uniqueIdentifier":"xsuaa-broker","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481516,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"space","displayName":"Space","uniqueIdentifier":"xsuaa-space","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481756,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"apiaccess","displayName":"apiaccess","uniqueIdentifier":"xsuaa-apiaccess","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481803,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkwODApIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41NDE0IDEwLjE5NTlDMTguNTQyOCA4Ljg1OTUyIDIxLjc5NTYgOC4xODEyNiAyNS4wODA5IDguMjA2NzJIMjUuMDc1NkMyOC4zNjA3IDguMjMyMjkgMzEuNjAyMiA4Ljk2MDg2IDM0LjU4MjMgMTAuMzQzNUMzNy41NjI0IDExLjcyNjEgNDAuMjExOSAxMy43MzA2IDQyLjM1MjggMTYuMjIyNEM0Mi41MzEzIDE2LjQzNjEgNDIuNzUwNSAxNi42MTIxIDQyLjk5NzcgMTYuNzQwM0M0My4yNDQ4IDE2Ljg2ODYgNDMuNTE0OSAxNi45NDY0IDQzLjc5MjQgMTYuOTY5NEM0NC4wNjk5IDE2Ljk5MjQgNDQuMzQ5MiAxNi45NiA0NC42MTQgMTYuODc0MkM0NC44Nzg5IDE2Ljc4ODQgNDUuMTI0MSAxNi42NTA4IDQ1LjMzNTMgMTYuNDY5NUM0NS41NDY2IDE2LjI4ODIgNDUuNzE5OCAxNi4wNjY3IDQ1Ljg0NDcgMTUuODE3OUM0NS45Njk3IDE1LjU2OTEgNDYuMDQ0IDE1LjI5NzkgNDYuMDYzNCAxNS4wMjAyQzQ2LjA4MjcgMTQuNzQyNCA0Ni4wNDY3IDE0LjQ2MzYgNDUuOTU3NCAxNC4xOTk5QzQ1Ljg2ODEgMTMuOTM2MiA0NS43Mjc0IDEzLjY5MjggNDUuNTQzMyAxMy40ODM5QzQzLjAxMTYgMTAuNTM2MiAzOS44NzgxIDguMTY0NjkgMzYuMzUzNCA2LjUyODk3QzMyLjgyODcgNC44OTMyNCAyOC45OTQ3IDQuMDMxMjEgMjUuMTA5MSA0LjAwMDgzQzIxLjIyMzUgMy45NzA0NiAxNy4zNzY1IDQuNzcyNDUgMTMuODI2NyA2LjM1Mjg3QzEwLjI3NjkgNy45MzMyOCA3LjEwNjY0IDEwLjI1NTUgNC41MjkxNyAxMy4xNjMzQzQuMTU5MDYgMTMuNTgxMiAzLjk3MDEgMTQuMTI5IDQuMDAzODYgMTQuNjg2MUM0LjAzNzYyIDE1LjI0MzMgNC4yOTEzNCAxNS43NjQzIDQuNzA5MiAxNi4xMzQ0QzUuMTI3MDYgMTYuNTA0NSA1LjY3NDgzIDE2LjY5MzUgNi4yMzIwMSAxNi42NTk3QzYuNzg5MiAxNi42MjU5IDcuMzEwMTUgMTYuMzcyMiA3LjY4MDI2IDE1Ljk1NDRDOS44NTk1OSAxMy40OTU4IDEyLjU0MDEgMTEuNTMyMyAxNS41NDE0IDEwLjE5NTlaTTIwLjc2MTQgMTcuMTMyN0MyMy4zOTc0IDE2LjM1ODEgMjYuMTk3OSAxNi4zMzg3IDI4Ljg0NDMgMTcuMDc2NkMzMS45MjQ4IDE3LjkzNTMgMzQuNjQwNyAxOS43NzY0IDM2LjU3OSAyMi4zMkMzOC41MTczIDI0Ljg2MzYgMzkuNTcyIDI3Ljk3MDUgMzkuNTgyOCAzMS4xNjg0QzM5LjU4ODUgMzEuNDMzNyAzOS41NDE5IDMxLjY5NzQgMzkuNDQ1NiAzMS45NDQ2QzM5LjM0OTQgMzIuMTkxOSAzOS4yMDU0IDMyLjQxNzcgMzkuMDIxOSAzMi42MDkzQzM4LjgzODMgMzIuODAwOCAzOC42MTg5IDMyLjk1NDQgMzguMzc2IDMzLjA2MTJDMzguMTMzMiAzMy4xNjc5IDM3Ljg3MTcgMzMuMjI1OCAzNy42MDY0IDMzLjIzMTVDMzcuMzQxMiAzMy4yMzcyIDM3LjA3NzQgMzMuMTkwNiAzNi44MzAyIDMzLjA5NDNDMzYuNTgzIDMyLjk5ODEgMzYuMzU3MiAzMi44NTQxIDM2LjE2NTYgMzIuNjcwNkMzNS45NzQgMzIuNDg3MSAzNS44MjA1IDMyLjI2NzYgMzUuNzEzNyAzMi4wMjQ4QzM1LjYwNjkgMzEuNzgxOSAzNS41NDkxIDMxLjUyMDQgMzUuNTQzNCAzMS4yNTUyQzM1LjU0NTYgMjkuODU3NCAzNS4yNzI1IDI4LjQ3MjkgMzQuNzM5NyAyNy4xODA3QzM0LjIwNjkgMjUuODg4NCAzMy40MjQ3IDI0LjcxMzggMzIuNDM4IDIzLjcyMzlDMzEuNDUxMiAyMi43MzM5IDMwLjI3OTEgMjEuOTQ4IDI4Ljk4ODYgMjEuNDExQzI3LjY5OCAyMC44NzQgMjYuMzE0NCAyMC41OTY1IDI0LjkxNjcgMjAuNTk0M0MyMy41MTg5IDIwLjU5MiAyMi4xMzQ0IDIwLjg2NTEgMjAuODQyMSAyMS4zOTc5QzE5LjU0OTkgMjEuOTMwOCAxOC4zNzUzIDIyLjcxMjkgMTcuMzg1MyAyMy42OTk3QzE2LjM5NTQgMjQuNjg2NSAxNS42MDk1IDI1Ljg1ODYgMTUuMDcyNSAyNy4xNDkxQzE0LjUzNTUgMjguNDM5NiAxNC4yNTggMjkuODIzMiAxNC4yNTU4IDMxLjIyMUMxNC4yNzQ2IDMzLjYwNzggMTQuNjI2NiAzNS45ODAyIDE1LjMwMTggMzguMjY5NkMxNi4wMzc2IDQwLjc0NzkgMTcuMjU3MSA0My4zNTQ5IDE5LjIwMTggNDUuMjk5N0MxOS41OTY0IDQ1LjY5MzkgMjAuMTMxMyA0NS45MTUyIDIwLjY4OSA0NS45MTQ5QzIxLjI0NjYgNDUuOTE0NyAyMS43ODE0IDQ1LjY5MjkgMjIuMTc1NSA0NS4yOTg0QzIyLjU2OTcgNDQuOTAzOSAyMi43OTEgNDQuMzY5IDIyLjc5MDggNDMuODExM0MyMi43OTA1IDQzLjI1MzYgMjIuNTY4NyA0Mi43MTg5IDIyLjE3NDIgNDIuMzI0N0MyMC45MDQ5IDQxLjA1NTMgMTkuOTU2MSAzOS4xNzYzIDE5LjMzMzMgMzcuMDczOEMxOC43MTMgMzQuOTg3MSAxOC40NjA3IDMyLjg0NTIgMTguNDYwNyAzMS4yMjFDMTguNDU2MiAyOS41MTMzIDE5LjEzMDIgMjcuODczOCAyMC4zMzQ1IDI2LjY2M0MyMS41Mzg5IDI1LjQ1MjMgMjMuMTc0OCAyNC43Njk2IDI0Ljg4MjUgMjQuNzY1MUMyNi41OTAyIDI0Ljc2MDUgMjguMjI5NyAyNS40MzQ2IDI5LjQ0MDQgMjYuNjM4OUMzMC42NTEyIDI3Ljg0MzIgMzEuMzMzOSAyOS40NzkxIDMxLjMzODQgMzEuMTg2OFYzMS4yMjFWMzEuMjY4M0MzMS4zMzg0IDMxLjM4OTIgMzEuMzMzMiAzMS41MTI3IDMxLjMyNTMgMzEuNjM2MkMzMS4zMDQgMzEuOTY3NCAzMS4zNjE3IDMyLjI5ODggMzEuNDkzNSAzMi42MDM0QzMxLjgwNzEgMzMuOTY4IDMyLjU3MTQgMzUuMTg3MSAzMy42NjI5IDM2LjA2NEMzNC43NTQ1IDM2Ljk0MDkgMzYuMTA5NiAzNy40MjQ0IDM3LjUwOTggMzcuNDM2NkMzOC45MDk5IDM3LjQ0ODcgNDAuMjczMiAzNi45ODg4IDQxLjM3OTggMzYuMTMwOUM0Mi40ODY1IDM1LjI3MzEgNDMuMjcxNyAzNC4wNjc0IDQzLjYwOSAzMi43MDg1QzQzLjcwNzcgMzIuNDc0MyA0My43NjI5IDMyLjIyNCA0My43NzE5IDMxLjk3QzQzLjg4NTQgMjkuMTUwNSA0My4zNjU3IDI2LjM0MTUgNDIuMjUxIDIzLjc0OTJDNDEuMTM2MyAyMS4xNTcgMzkuNDU1IDE4Ljg0NzQgMzcuMzMwNSAxNi45OTAzQzM1LjIwNjEgMTUuMTMzMSAzMi42OTI2IDEzLjc3NTUgMjkuOTc0NiAxMy4wMTczQzI3LjI1NjcgMTIuMjU5IDI0LjQwMzMgMTIuMTE5NCAyMS42MjQzIDEyLjYwODZDMTguODQ1MyAxMy4wOTc4IDE2LjIxMTIgMTQuMjAzNSAxMy45MTU2IDE1Ljg0NDNDMTEuNjIgMTcuNDg1MiA5LjcyMTE4IDE5LjYxOTUgOC4zNTg2OSAyMi4wOTA1QzYuOTk2MiAyNC41NjE1IDYuMjA0NjYgMjcuMzA2NCA2LjA0MjI0IDMwLjEyMzVDNS44Nzk4MSAzMi45NDA1IDYuMzUwNjIgMzUuNzU4MiA3LjQyMDA4IDM4LjM2OTRDNy42NDI0NiAzOC44Njg3IDguMDUwNTEgMzkuMjYxNyA4LjU1Nzc1IDM5LjQ2NTNDOS4wNjQ5OSAzOS42Njg4IDkuNjMxNTUgMzkuNjY2OCAxMC4xMzczIDM5LjQ1OTdDMTAuNjQzMSAzOS4yNTI2IDExLjA0ODQgMzguODU2NyAxMS4yNjcyIDM4LjM1NThDMTEuNDg2MSAzNy44NTUgMTEuNTAxMyAzNy4yODg3IDExLjMwOTcgMzYuNzc2OEMxMC4yNyAzNC4yMzM3IDkuOTY0NjQgMzEuNDQ5OSAxMC40Mjg0IDI4Ljc0MTlDMTAuODkyMSAyNi4wMzM5IDEyLjEwNjMgMjMuNTEwMyAxMy45MzMgMjEuNDU4MUMxNS43NTk3IDE5LjQwNTggMTguMTI1NSAxNy45MDcyIDIwLjc2MTQgMTcuMTMyN1pNMjcuNDQxNiAzMS4yMjA0QzI3LjQ0MTUgMzAuMDYwNiAyNi41MDEzIDI5LjEyMDUgMjUuMzQxNSAyOS4xMjA1QzI0LjE4MTcgMjkuMTIwNSAyMy4yNDE1IDMwLjA2MDggMjMuMjQxNiAzMS4yMjA2QzIzLjI0MTcgMzQuMzE1MiAyMy44NDc3IDM2LjE5MTcgMjUuMDY1NCAzOC4xNDA5QzI1LjY3OTkgMzkuMTI0NSAyNi45NzU1IDM5LjQyMzggMjcuOTU5MSAzOC44MDkzQzI4Ljk0MjcgMzguMTk0OCAyOS4yNDIgMzYuODk5MyAyOC42Mjc1IDM1LjkxNTZDMjcuODU1OSAzNC42ODA2IDI3LjQ0MTYgMzMuNTg1NSAyNy40NDE2IDMxLjIyMDRaIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfMjAwM18yOTA4MCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MS4yNjcyIDM1LjU0NzRDNTIuMjIwNiAzNi40NjgyIDUyLjI0NzEgMzcuOTg3NiA1MS4zMjYzIDM4Ljk0MUwzOS40MjIyIDUxLjI2NzJDMzguNTIwNSA1Mi4yMDA5IDM3LjAzOTkgNTIuMjQ4NSAzNi4wODAxIDUxLjM3NDdMMzAuNDIzNSA0Ni4yMjQ3QzI5LjQ0MzQgNDUuMzMyNCAyOS4zNzIyIDQzLjgxNDQgMzAuMjY0NiA0Mi44MzQzQzMxLjE1NjkgNDEuODU0MiAzMi42NzQ4IDQxLjc4MyAzMy42NTUgNDIuNjc1NEwzNy41ODg0IDQ2LjI1NjVMNDcuODczNiAzNS42MDY1QzQ4Ljc5NDQgMzQuNjUzMSA1MC4zMTM4IDM0LjYyNjYgNTEuMjY3MiAzNS41NDc0WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkwODApIi8+CjwvZz4KPGRlZnM+CjxyYWRpYWxHcmFkaWVudCBpZD0icGFpbnQwX3JhZGlhbF8yMDAzXzI5MDgwIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBncmFkaWVudFRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjUyMzcgMTAuMTU0Mykgcm90YXRlKDQ1LjIxMzMpIHNjYWxlKDQxLjM0NDQgNzguMTE5OSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTA4MCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMy4xMDE3IDM3LjQ1MDEpIHJvdGF0ZSgzNy40NDg3KSBzY2FsZSgxOS42MTk1IDE3LjI2MSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzIwMDNfMjkwODAiPgo8cmVjdCB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0IDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-8"},{"key":"SERVICE-92"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/CP_AUTHORIZ_TRUST_MNG/Cloud/en-US"},{"title":"REST API Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/dbea343ebe184c26b6067daaabaa9ac6.html"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"neo-eu2-canary"},{"key":"neo-eu1"},{"key":"neo-eu2"},{"key":"neo-eu3"},{"key":"neo-eu1-trial"},{"key":"neo-us1"},{"key":"neo-us2"},{"key":"neo-us3"},{"key":"neo-us4"},{"key":"neo-ap1"},{"key":"neo-ap2"},{"key":"neo-jp1"},{"key":"neo-cn1"},{"key":"neo-cn2"},{"key":"cf-eu1-sagdf"},{"key":"cf-us10"},{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-eu1"},{"key":"cf-eu2"},{"key":"neo-ca1"},{"key":"neo-ca2"},{"key":"neo-ru1"},{"key":"neo-br1"},{"key":"neo-ae1"},{"key":"neo-sa1"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-br10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ca10"},{"key":"cf-us30"},{"key":"cf-cn40"}],"CFService":{"id":"xsuaa","description":"Manage application authorizations and trusted connections to identity providers.","name":"xsuaa","metadata":{"displayName":"Authorization and Trust Management Service"},"plans":[{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Application plan to be used for business applications","free":"true","name":"application","technicalName":"application","metadata":{"displayName":"application","bullets":["Tenant isolation","Supports different OAuth flows (Client credentials, authorization code, SAML bearer assertion)","One OAuth client per service instance"]}},{"id":"ThGdx5loQ6XhvcdY6dLlEXcTgQD7641pDKXJfzwYGLg=","description":"Access plan for authorizations, users, identity providers, and API endpoints","free":"true","name":"apiaccess","technicalName":"apiaccess","metadata":{"displayName":"apiaccess","bullets":["V2 API Access","Only supports Client Credentials","One OAuth client, cloned for all other service instances"]}}]}},"ownerType":"VENDOR"},{"name":"content-agent","displayName":"SAP Content Agent Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"content-agent-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481562,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"content-agent-standard","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481848,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"cias","displayName":"Cloud Integration Automation","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"oauth2","displayName":"oauth2","uniqueIdentifier":"cias-oauth2","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481452,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"standard","displayName":"standard","uniqueIdentifier":"cias-standard","category":"APPLICATION","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481681,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":{"iconFormat":"image/svg+xml","serviceDescription":[{"linkCategory":"documentation","title":"$i18n{applicationCoordinates.applicationDescription.title_documentation}","propagateTheme":"true","propagateLocale":"true","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/Cloud%2520Integration%2520Automation%2520Service/Latest/en-US"}],"serviceCategories":[{"name":"$i18n{applicationCoordinates.applicationCategories.name_category}"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu12"}],"CFService":{"name":"cias","description":"Provides guided workflow to integrate SAP Cloud and On-Premise solutions.","metadata":{"displayName":"Cloud Integration Automation"},"plans":[{"technicalName":"oauth2","name":"oauth2","description":"Plan to access Cloud Integration Automation Service APIs","metadata":{"bullets":[]}},{"technicalName":"standard","name":"standard","description":"Plan to use the Cloud Integration Automation Service - UI Application","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-api","displayName":"Audit Log Retrieval API v1","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-api-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481741,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"one-mds","displayName":"Master Data Integration","businessCategory":{"id":"INTEGRATION","displayName":"Integration"},"servicePlans":[{"name":"sap-integration","displayName":"sap-integration","uniqueIdentifier":"one-mds-sap-integration","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481696,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiPjxkZWZzPjxzdHlsZT4uY2xzLTF7b3BhY2l0eTowLjI7fS5jbHMtMntmaWxsOiMyMzkxYjg7fS5jbHMtM3tmaWxsOiMxZDYyYWE7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5aZWljaGVuZmzDpGNoZSAxIEtvcGllIDY8L3RpdGxlPjxnIGlkPSJFYmVuZV8zIiBkYXRhLW5hbWU9IkViZW5lIDMiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTY0Mi44Nyw0NzguNTEsNDYyLjY5LDg2MC43QTgxLjgxLDgxLjgxLDAsMCwxLDM1NCw5MDAuMjdoMGE4MS44MSw4MS44MSwwLDAsMS0zOS41Ny0xMDguNzJMNDk0LjU3LDQwOS4zN0E4MS44Myw4MS44MywwLDAsMSw2MDMuMywzNjkuNzloMEE4MS44Miw4MS44MiwwLDAsMSw2NDIuODcsNDc4LjUxWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTc2NS41Niw3NTAuNjMsNjMxLDEwMzQuMzdhODEuODEsODEuODEsMCwwLDEtMTA4LjcxLDM5LjU2aDBBODEuOCw4MS44LDAsMCwxLDQ4Mi43LDk2NS4yMkw2MTcuMjksNjgxLjQ4QTgxLjgsODEuOCwwLDAsMSw3MjYsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzY1LjU2LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjMxMC44NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMSIgY3g9IjgwMi40OCIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik04MDYuNjcsNzkxLjU1YTgxLjgyLDgxLjgyLDAsMCwwLDM5LjU4LDEwOC43MmgwQTgxLjgsODEuOCwwLDAsMCw5NTUsODYwLjdsMTgwLjE5LTM4Mi4xOWE4MS44Miw4MS44MiwwLDAsMC0zOS41OC0xMDguNzJoMGE4MS44Miw4MS44MiwwLDAsMC0xMDguNzIsMzkuNThaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxMjk0Ljc2IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyNDguMjQsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NzUsOTY1LjIybDEyNS0yNjkuMzNhODEuNzksODEuNzksMCwwLDEsMTA4LjctMzkuNTdoMEE4MS44MSw4MS44MSwwLDAsMSwxMjQ4LjI0LDc2NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik02MTguODYsNDc4LjUxLDQzOC42Nyw4NjAuN0E4MS44LDgxLjgsMCwwLDEsMzMwLDkwMC4yN2gwYTgxLjgyLDgxLjgyLDAsMCwxLTM5LjU4LTEwOC43Mkw0NzAuNTYsNDA5LjM3YTgxLjgyLDgxLjgyLDAsMCwxLDEwOC43Mi0zOS41OGgwQTgxLjgyLDgxLjgyLDAsMCwxLDYxOC44Niw0NzguNTFaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTY0LjIyLDUyMS41Niw0MzAuNDEsNTQ5Ljg0YTgxLjg0LDgxLjg0LDAsMCwxLTk4LjE1LTYxLjI5aDBhODEuODEsODEuODEsMCwwLDEsNjEuMzEtOTguMTJsMTMzLjgxLTI4LjI4YTgxLjg0LDgxLjg0LDAsMCwxLDk4LjE1LDYxLjI5aDBBODEuODEsODEuODEsMCwwLDEsNTY0LjIyLDUyMS41NloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03NDEuNTUsNzUwLjYzLDYwNywxMDM0LjM3YTgxLjgsODEuOCwwLDAsMS0xMDguNywzOS41NmgwYTgxLjgsODEuOCwwLDAsMS0zOS41Ny0xMDguNzFMNTkzLjI3LDY4MS40OEE4MS44Miw4MS44MiwwLDAsMSw3MDIsNjQxLjkxaDBBODEuODIsODEuODIsMCwwLDEsNzQxLjU1LDc1MC42M1oiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9IjI4Ni44NSIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtMyIgY3g9Ijc3OC40NyIgY3k9Ijk5OS45MSIgcj0iODEuNTMiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05NjIuODQsNDA5LjM3YTgxLjgzLDgxLjgzLDAsMCwxLDEwOC43My0zOS41OGgwYTgxLjgyLDgxLjgyLDAsMCwxLDM5LjU3LDEwOC43Mkw5MzEsODYwLjdhODEuODEsODEuODEsMCwwLDEtMTA4LjczLDM5LjU3aDBhODEuODEsODEuODEsMCwwLDEtMzkuNTctMTA4LjcyIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTMiIGN4PSIxMjcwLjc1IiBjeT0iOTk5LjkxIiByPSI4MS41MyIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTEyMjQuMjIsNzY1bC0xMjUsMjY5LjM0YTgxLjgxLDgxLjgxLDAsMCwxLTEwOC43MSwzOS41NmgwQTgxLjgsODEuOCwwLDAsMSw5NTEsOTY1LjIybDEyNS0yNjkuMzNhODEuOCw4MS44LDAsMCwxLDEwOC43MS0zOS41N2gwQTgxLjgsODEuOCwwLDAsMSwxMjI0LjIyLDc2NVoiLz48L2c+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-469"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SAP_MASTER_DATA_INTEGRATION/CLOUD/en-US"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/master-data-integration?region=all"}],"serviceCategories":[{"name":"Integration"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"one-mds","description":"SAP Business Technology Platform Master Data Integration service","metadata":{"displayName":"Master Data Integration"},"plans":[{"technicalName":"sap-integration","name":"sap-integration","description":"Service plan for SAP-to-SAP integrations","metadata":{"bullets":["Limit to 1 million requests per month","50 GB of data retained"]}}]}},"ownerType":"VENDOR"},{"name":"identity","displayName":"Cloud Identity Services","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"application","displayName":"application","uniqueIdentifier":"identity-application","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481653,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyBpZD0ic2FwLWNsb3VkLWlkZW50aXR5LXNlcnZpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDU2IDU2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBhNmVkMTt9LmNscy0ye2ZpbGw6IzA1M2I3MDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnNhcC1jbG91ZC1pZGVudGl0eS1zZXJ2aWNlPC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNi4xNTEsMzEuNmEzLjc0OCwzLjc0OCwwLDAsMC0xLjItLjgwNkEzLjY3LDMuNjcsMCwwLDAsMjMuNSwzMC41SDE5Ljc1YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTNBMy43OTQsMy43OTQsMCwwLDAsMTcuMSwzMS42YTMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yQTMuNjcsMy42NywwLDAsMCwxNiwzNC4yNVYzOEgyNy4yNVYzNC4yNWEzLjY3LDMuNjcsMCwwLDAtLjI5My0xLjQ1QTMuNzQ4LDMuNzQ4LDAsMCwwLDI2LjE1MSwzMS42WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTI0LjI3NiwyOS40YTMuNzk0LDMuNzk0LDAsMCwwLC44MDYtMS4xODYsMy43NzIsMy43NzIsMCwwLDAsMC0yLjkxNSwzLjc0NSwzLjc0NSwwLDAsMC0yLjAwNy0yLjAwNywzLjc3MiwzLjc3MiwwLDAsMC0yLjkxNSwwLDMuNzk0LDMuNzk0LDAsMCwwLTEuMTg2LjgwNiwzLjc0OCwzLjc0OCwwLDAsMC0uODA2LDEuMiwzLjc3MiwzLjc3MiwwLDAsMCwwLDIuOTE1LDMuODI2LDMuODI2LDAsMCwwLDEuOTkyLDEuOTkyLDMuNzcyLDMuNzcyLDAsMCwwLDIuOTE1LDBBMy43NDgsMy43NDgsMCwwLDAsMjQuMjc2LDI5LjRaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzkuNzA3LDMyLjhBMy43NDUsMy43NDUsMCwwLDAsMzcuNywzMC43OTNhMy42NywzLjY3LDAsMCwwLTEuNDUtLjI5M0gzMi41YTMuNjQsMy42NCwwLDAsMC0xLjQ2NS4yOTMsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNjUyLDMuNjUyLDAsMCwwLS4yOTMsMS40NVYzOEg0MFYzNC4yNUEzLjY3LDMuNjcsMCwwLDAsMzkuNzA3LDMyLjhaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzcuMDI2LDI5LjRhMy43OTQsMy43OTQsMCwwLDAsLjgwNi0xLjE4NiwzLjc3MiwzLjc3MiwwLDAsMCwwLTIuOTE1LDMuNzQ1LDMuNzQ1LDAsMCwwLTIuMDA3LTIuMDA3LDMuNzcyLDMuNzcyLDAsMCwwLTIuOTE1LDAsMy43OTQsMy43OTQsMCwwLDAtMS4xODYuODA2LDMuNzQ4LDMuNzQ4LDAsMCwwLS44MDYsMS4yLDMuNzcyLDMuNzcyLDAsMCwwLDAsMi45MTUsMy44MjYsMy44MjYsMCwwLDAsMS45OTIsMS45OTIsMy43NzIsMy43NzIsMCwwLDAsMi45MTUsMEEzLjc0OCwzLjc0OCwwLDAsMCwzNy4wMjYsMjkuNFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00NS44NCwyMy45NjJhOC40ODksOC40ODksMCwwLDAtMTIuNzgzLTUuNzEzQTExLjU1NSwxMS41NTUsMCwwLDAsMjIuNDEsMTFDOS42MzUsMTEsMTEuMDksMjMuOTg4LDExLjA5LDIzLjk4OEExMC4yNTcsMTAuMjU3LDAsMCwwLDE0LjI4NSw0NEg0MS41YTEwLjQ4NiwxMC40ODYsMCwwLDAsNC4zNC0yMC4wMzhaTTQxLjUsNDFIMTQuMjg1YTcuMjU3LDcuMjU3LDAsMCwxLTIuMjU4LTE0LjE2MmwyLjI3OS0uNzY4LS4yMzItMi4zODljMC0uMDQyLS4zNzktNC4yMzcsMi4wMS03LjAxMywxLjM3Ny0xLjYsMy41MjQtMi41LDYuMzgxLTIuNjY2YTkuMjA5LDkuMjA5LDAsMCwxLDcuOTk0LDUuMzM5bDEuMTc2LDIuODcxLDIuNDI0LTEuMzE4QTcuNiw3LjYsMCwwLDEsMzcuNDQ5LDIwYTUuNTQ2LDUuNTQ2LDAsMCwxLDUuNDQzLDQuNTE4bC4yODgsMS41MjgsMS40MTUuNjQ2QTcuNDg2LDcuNDg2LDAsMCwxLDQxLjUsNDFaIi8+PC9zdmc+","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-53"},{"key":"SERVICE-40"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/p/IDENTITY_PROVISIONING"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"identity","description":"User Management and Authentication.","metadata":{"displayName":"Cloud Identity Services"},"plans":[{"technicalName":"application","name":"application","description":"Register an application into your Identity Authentication tenant","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"html5-apps-repo","displayName":"HTML5 Application Repository Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"app-host","displayName":"app-host","uniqueIdentifier":"html5-apps-repo-app-host","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481485,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]},{"name":"app-runtime","displayName":"app-runtime","uniqueIdentifier":"html5-apps-repo-app-runtime","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481637,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIwMDNfMjkxMzQpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNy43MzIzIDguOEMyMi4yNDk4IDguOCAxOC4xNDYgMTQuMTE3MSAxOC41MjUxIDE5LjE1MzdDMTguNTgwNiAxOS44OTE3IDE4LjI5MjYgMjAuNjE0IDE3Ljc0NDYgMjEuMTExM0MxNy4xOTY1IDIxLjYwODUgMTYuNDQ5NyAyMS44MjUyIDE1LjcyMDYgMjEuNjk4NEMxMy40MzQxIDIxLjMwMDcgMTEuNzczMSAyMS45MTM1IDEwLjY3NjYgMjIuOTIyOEM5LjU0MjYzIDIzLjk2NjYgOC44IDI1LjYzNDEgOC44IDI3LjY3OTFDOC44IDI5LjY5ODggOS40MDEwNyAzMS4xODUzIDEwLjM0NzcgMzIuMTU2OEMxMS4yODE1IDMzLjExNSAxMi44MTMxIDMzLjg0MDkgMTUuMjE4NSAzMy44NDA5SDIwLjkwMzhDMjIuMjI5MyAzMy44NDA5IDIzLjMwMzggMzQuOTE1NCAyMy4zMDM4IDM2LjI0MDlDMjMuMzAzOCAzNy41NjY0IDIyLjIyOTMgMzguNjQwOSAyMC45MDM4IDM4LjY0MDlIMTUuMjE4NUMxMS44MDk1IDM4LjY0MDkgOC45MzE5NCAzNy41ODE2IDYuOTEwMDQgMzUuNTA2N0M0LjkwMTAzIDMzLjQ0NTEgNCAzMC42NTA4IDQgMjcuNjc5MUM0IDI0LjQ4NTkgNS4xNzAzNCAyMS40NjcyIDcuNDI1ODUgMTkuMzkxMUM5LjEyMzMyIDE3LjgyODcgMTEuMzIwNiAxNi45MDc0IDEzLjgxNTkgMTYuNzg5NkMxNC42NTYzIDEwLjI3NjEgMjAuMDg1MSA0IDI3LjczMjMgNEMzMy43NTgxIDQgMzguMjc3MiA3LjM2NjUyIDQwLjcyNTYgMTIuMzk2MkM0NS4xODQ3IDEyLjQzMjcgNDkuMzQyIDE1LjA0MDEgNTAuNzQ5MiAyMC4wODI3QzUxLjEwNTUgMjEuMzU5NCA1MC4zNTkzIDIyLjY4MzIgNDkuMDgyNiAyMy4wMzk1QzQ3LjgwNTkgMjMuMzk1OCA0Ni40ODIxIDIyLjY0OTcgNDYuMTI1OSAyMS4zNzNDNDUuMjU0OSAxOC4yNTIxIDQyLjU5ODYgMTYuODEwOCAzOS41NTY5IDE3LjI3ODhDMzguNDMxOCAxNy40NTIgMzcuMzM5OCAxNi44MTA5IDM2Ljk0MjcgMTUuNzQ0QzM1LjMwMzEgMTEuMzM5NiAzMi4wNTggOC44IDI3LjczMjMgOC44WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxMzQpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEuMTEwMiAyNi43MzM3SDMyLjI2N1YyNy45OTk5SDMzLjUzMDRWMjQuMjE5MUgzMi4yNjdWMjUuNDY3NUgzMS4xMTAyVjI0LjIxOTFIMjkuODQ2OFYyNy45OTk5SDMxLjExMDJWMjYuNzMzN1pNMzUuMTkyOCAyNy45OTk5SDM2LjQ1NzJWMjUuNDczMkgzNy41NzAxVjI0LjIxOTFIMzQuMDc5OVYyNS40NzMySDM1LjE5MjhWMjcuOTk5OVpNNDAuMjMwMyAyNy40NzAxTDM5LjM2MDQgMjYuMTI1NFYyNy45OTk5SDM4LjEyNDFWMjQuMjE5MUgzOS40NDE3TDQwLjI1MjggMjUuNTQ3TDQxLjA2MiAyNC4yMTkxSDQyLjM4MDVWMjcuOTk5OUg0MS4xMjE4VjI2LjEyNTRMNDAuMjUyOCAyNy40NzAxSDQwLjIzMDNaTTQ1Ljk3MTIgMjYuNzQ5Nkg0NC4xOTM5VjI0LjIxOTFINDIuOTI5NlYyNy45OTk5SDQ1Ljk3MTJWMjYuNzQ5NlpNMjkuODA1NiA0OS43NDc5TDI3Ljk5ODQgMjkuNDc5Nkg0Ny44NjQ5TDQ2LjA1NDkgNDkuNzQ1MUwzNy45MTk1IDUyTDI5LjgwNTYgNDkuNzQ3OVpNMzMuMDcxMiAzNS41MjI0TDMzLjU1MjQgNDAuOTIwOEgzNy45MjM4SDM3LjkzNjlINDAuMzM2Nkw0MC4xMDk1IDQzLjQ2MDZMMzcuOTIzOCA0NC4wNTAyTDM1Ljc0IDQzLjQ2MjVMMzUuNTk5OCA0MS45MDAxSDM0LjU0MDJIMzMuNjMyOEwzMy45MDc1IDQ0Ljk3NTNMMzcuOTIxOSA0Ni4wODkyTDM3LjkzMDQgNDYuMDg2NEw0MS45NDEgNDQuOTc1M0w0MS45NyA0NC42NDQ1TDQyLjQzMDcgMzkuNDg4Mkw0Mi40NzgzIDM4Ljk2MjFINDEuOTUwNEgzNy45MzY5SDM3LjkyMzhIMzUuMzQ0N0wzNS4xNjUzIDM2Ljk1NTlIMzcuOTMwNEgzNy45MzY5SDQyLjY1NjhINDIuNjYzNEw0Mi43MDI2IDM2LjUxNTdMNDIuNzkyMyAzNS41MjI0TDQyLjgzOSAzNC45OTcySDM3LjkzNjlIMzcuOTMwNEgzMy4wMjQ1TDMzLjA3MTIgMzUuNTIyNFoiIGZpbGw9InVybCgjcGFpbnQxX3JhZGlhbF8yMDAzXzI5MTM0KSIvPgo8L2c+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4yNjM0IDkuMDg2Mykgcm90YXRlKDM2Ljc5MDgpIHNjYWxlKDQwLjQ5MzMgNzMuMzkzNykiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDE5NUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzExNDdFOSIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MV9yYWRpYWxfMjAwM18yOTEzNCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgzMS4wNzQ3IDI4LjM5ODMpIHJvdGF0ZSg1NC40MzA5KSBzY2FsZSgyMy43OTAzIDIwLjUxNTEpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzEzNDhGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNjIzOEQiLz4KPC9yYWRpYWxHcmFkaWVudD4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMDAzXzI5MTM0Ij4KPHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCA0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=","applicationCoordinates":{"iconFormat":"image/svg+xml","visibility":"PUBLIC","inventoryIds":[{"key":"SERVICE-234"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/11d77aa154f64c2e83cc9652a78bb985.html"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/9220a2fd35d84c888c0ae870ca62bfb7.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/serviceCatalog/html5-application-repository-service"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10"},{"key":"cf-eu11"},{"key":"cf-us10"},{"key":"cf-ap10"},{"key":"cf-ap11"},{"key":"cf-ap12"},{"key":"cf-br10"},{"key":"cf-ca10"},{"key":"cf-jp10"},{"key":"cf-jp20"},{"key":"cf-us30"},{"key":"cf-eu20"},{"key":"cf-us20"},{"key":"cf-us21"},{"key":"cf-ap21"},{"key":"cf-eu2"},{"key":"cf-cn40"}],"CFService":{"name":"html5-apps-repo","plans":[{"technicalName":"app-runtime","name":"app-runtime","description":"Use this service plan to consume HTML5 applications stored in the repository.","metadata":{"bullets":[]}},{"technicalName":"app-host","name":"app-host","description":"Use this service plan to deploy HTML5 applications to the repository.","metadata":{"bullets":[]}}]}},"ownerType":"VENDOR"},{"name":"auditlog-management","displayName":"Auditlog Management","businessCategory":{"id":"DATA_AND_ANALYTICS","displayName":"Data and Analytics"},"servicePlans":[{"name":"default","displayName":"Default","uniqueIdentifier":"auditlog-management-default","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481592,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":null,"applicationCoordinates":null,"ownerType":"VENDOR"},{"name":"print","displayName":"Print Service","businessCategory":{"id":"FOUNDATION_CROSS_SERVICES","displayName":"Foundation / Cross Services"},"servicePlans":[{"name":"receiver","displayName":"receiver","uniqueIdentifier":"print-receiver","category":"ELASTIC_SERVICE","beta":false,"maxAllowedSubaccountQuota":null,"unlimited":false,"assignmentInfo":[{"entityId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","entityType":"SUBACCOUNT","amount":1.0,"requestedAmount":null,"entityState":"OK","stateMessage":"Succeeded to update assignment of service plan.","autoAssign":false,"autoDistributeAmount":null,"createdDate":1684151475697,"modifiedDate":1684151481546,"resources":[],"unlimitedAmountAssigned":false,"parentId":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"GLOBAL_ACCOUNT","parentRemainingAmount":1.0,"parentAmount":1,"autoAssigned":true,"billingObject":null,"availableBillingObjects":null,"parentAssignedBillingObject":null}]}],"iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDE0LjI4OTdDNCAxMS4wODc4IDYuNTk1NTkgOC40OTIyNSA5Ljc5NzQyIDguNDkyMjVINDYuMjAyNkM0OS40MDQ0IDguNDkyMjUgNTIgMTEuMDg3OCA1MiAxNC4yODk3VjMzLjA2MjJDNTIgMzYuMjY0IDQ5LjQwNDQgMzguODU5NiA0Ni4yMDI2IDM4Ljg1OTZINDUuNTIyOUw0NS41MjI5IDI4LjY0MTlDNDUuNTIyOSAyNS45MjgzIDQzLjMyMzIgMjMuNzI4NiA0MC42MDk2IDIzLjcyODZMMTUuMzkxOCAyMy43Mjg2QzEyLjY3ODIgMjMuNzI4NiAxMC40Nzg1IDI1LjkyODMgMTAuNDc4NSAyOC42NDE5TDEwLjQ3ODUgMzguODU5Nkg5Ljc5NzQyQzYuNTk1NTkgMzguODU5NiA0IDM2LjI2NCA0IDMzLjA2MjJWMTQuMjg5N1pNNDcuMTAxOSAxNS4zNDk1QzQ3LjEwMTkgMTYuNDMxNSA0Ni4yMjQ4IDE3LjMwODcgNDUuMTQyNyAxNy4zMDg3QzQ0LjA2MDcgMTcuMzA4NyA0My4xODM1IDE2LjQzMTUgNDMuMTgzNSAxNS4zNDk1QzQzLjE4MzUgMTQuMjY3NSA0NC4wNjA3IDEzLjM5MDMgNDUuMTQyNyAxMy4zOTAzQzQ2LjIyNDggMTMuMzkwMyA0Ny4xMDE5IDE0LjI2NzUgNDcuMTAxOSAxNS4zNDk1WiIgZmlsbD0idXJsKCNwYWludDBfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzkuNTIyOSAyOS43Mjg2TDM5LjUyMjkgNDUuODk0MUwxNi40Nzg1IDQ1Ljg5NDFMMTYuNDc4NSAyOS43Mjg2TDM5LjUyMjkgMjkuNzI4NlpNNDIuNTIyOSA0Ni45ODA4QzQyLjUyMjkgNDguMDM3NSA0MS42NjYzIDQ4Ljg5NDEgNDAuNjA5NiA0OC44OTQxTDE1LjM5MTcgNDguODk0MUMxNC4zMzUxIDQ4Ljg5NDEgMTMuNDc4NSA0OC4wMzc1IDEzLjQ3ODUgNDYuOTgwOEwxMy40Nzg1IDI4LjY0MTlDMTMuNDc4NSAyNy41ODUyIDE0LjMzNTEgMjYuNzI4NiAxNS4zOTE3IDI2LjcyODZMNDAuNjA5NiAyNi43Mjg2QzQxLjY2NjMgMjYuNzI4NiA0Mi41MjI5IDI3LjU4NTIgNDIuNTIyOSAyOC42NDE5TDQyLjUyMjkgNDYuOTgwOFpNMzUuMDA3NSAzNS43ODgzTDIwLjk5NTIgMzUuNzg4M0MyMC4xNDk5IDM1Ljc4ODMgMTkuNDY0NiAzNS4xMDMxIDE5LjQ2NDYgMzQuMjU3N0MxOS40NjQ2IDMzLjQxMjQgMjAuMTQ5OSAzMi43MjcxIDIwLjk5NTIgMzIuNzI3MUwzNS4wMDc1IDMyLjcyNzFDMzUuODUyOSAzMi43MjcxIDM2LjUzODEgMzMuNDEyNCAzNi41MzgxIDM0LjI1NzdDMzYuNTM4MSAzNS4xMDMxIDM1Ljg1MjkgMzUuNzg4MyAzNS4wMDc1IDM1Ljc4ODNaTTM1LjAwNzUgNDIuODk1NkgyMS4wMDMyQzIwLjE1NzggNDIuODk1NiAxOS40NzI1IDQyLjIxMDMgMTkuNDcyNSA0MS4zNjVDMTkuNDcyNSA0MC41MTk3IDIwLjE1NzggMzkuODM0NCAyMS4wMDMyIDM5LjgzNDRIMzUuMDA3NUMzNS44NTI5IDM5LjgzNDQgMzYuNTM4MSA0MC41MTk3IDM2LjUzODEgNDEuMzY1QzM2LjUzODEgNDIuMjEwMyAzNS44NTI5IDQyLjg5NTYgMzUuMDA3NSA0Mi44OTU2WiIgZmlsbD0idXJsKCNwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIpIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfMjAwM18yOTE1MiIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMS40NDM1IDEyLjk1MTEpIHJvdGF0ZSgzMi42MDc3KSBzY2FsZSgzOS40NTA4IDY3LjY3NzcpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkxNTIiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTguMTAwNyAzMC4wNTUzKSByb3RhdGUoMzcuMzQ5Mykgc2NhbGUoMjUuNTg2NCAyOS45NTE5KSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwMEJCRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA4QkZGIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==","applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-446"}],"visibility":"PUBLIC","serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/product/SCP_PRINT_SERVICE/SHIP/en-US"},{"linkCategory":"support","title":"Support","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://launchpad.support.sap.com"}],"serviceCategories":[{"name":"Foundation / Cross Services"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"id":"6db542eb-8187-4afc-8a85-e08b4a3cc24e","name":"print","description":"Manage print queues, connect print clients, and monitor print status.","metadata":{"displayName":"Print Service"},"bindable":true,"plan_updateable":true,"plans":[{"id":"c3320e0f-5866-4f14-895e-48bc92a4245c","description":"Provides all relevant APIs for developing application which need to enable print capacity","free":"false","name":"sender","technicalName":"sender","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_sender.metadata.displayName}","description":"Provides all relevant APIs for developing application which need to enable print capacity"}},{"id":"511b150c-99ae-41db-8220-eaad9358e923","description":"Establish the connection to print clients","free":"true","name":"receiver","technicalName":"receiver","metadata":{"displayName":"$i18n{applicationCoordinates.CFService.plans_receiver.metadata.displayName}","description":"Establish the connection to print clients"}}]}},"ownerType":"VENDOR"}],"fetchErrorFromExternalProviderRegistry":null,"serviceTermsOfUseStatus":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 11:53:42 GMT + - Tue, 01 Aug 2023 12:08:12 GMT Expires: - "0" Pragma: @@ -1529,9 +1529,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4b486ad9-241f-4ec0-6208-f1cc419d7a0e + - 54186c0b-6d9b-4430-6be8-398997d44c42 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 817.6322ms + duration: 580.430548ms diff --git a/internal/provider/fixtures/resource_subaccount_environment_instance.update.yaml b/internal/provider/fixtures/resource_subaccount_environment_instance.update.yaml index 9b0d729a..d3553e4a 100644 --- a/internal/provider/fixtures/resource_subaccount_environment_instance.update.yaml +++ b/internal/provider/fixtures/resource_subaccount_environment_instance.update.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9ba314a2-b355-a62e-e703-d7fd9c04dbf7 + - 0e05e4b8-bfe5-35cb-f993-cc2d2694e7c7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -34,7 +34,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:50 GMT + - Tue, 01 Aug 2023 11:49:07 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f158734a-fdfa-4809-6d25-5b3633325cfc + - 4f269e76-154e-4c9e-515d-6b6c97a2ebd3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 981.030316ms + duration: 526.562974ms - id: 1 request: proto: HTTP/1.1 @@ -75,7 +75,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -83,7 +83,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a01f0775-3572-afe0-7459-c65fa1a8fd98 + - f36c1be3-741c-101f-3b2c-fa651d5bb529 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -96,7 +96,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:51 GMT + - Tue, 01 Aug 2023 11:49:08 GMT Expires: - "0" Pragma: @@ -119,12 +119,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dd4d111e-ae4b-4634-7505-5e1524f36e5d + - c1bf8c67-5414-4ab7-413a-0d15b1aa731f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 272.071843ms + duration: 445.945187ms - id: 2 request: proto: HTTP/1.1 @@ -137,7 +137,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -145,7 +145,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6297d2d1-27c6-4f5f-c3eb-e02d6d07dd4c + - 1763f0fc-d2ff-c6b3-b8e1-f7a78ff1fa99 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -158,7 +158,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:51 GMT + - Tue, 01 Aug 2023 11:49:08 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5652372f-a39d-4ec5-520c-081ac1d0c36e + - 181dbab5-1b45-4baa-7905-cea1fffd452e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 434.730358ms + duration: 390.380668ms - id: 3 request: proto: HTTP/1.1 @@ -207,9 +207,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aa083218-c3c7-bb3d-32a7-efa49d6fffc7 + - 57de128b-da10-92ab-cc36-979615425c81 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:58:52 GMT + - Tue, 01 Aug 2023 11:49:09 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b1adca59-33ef-4aa7-72ba-f71b0e77b4aa + - a2539a88-0504-40d2-5925-ca5aebe1849e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 194.779402ms + duration: 397.667478ms - id: 4 request: proto: "" @@ -285,9 +285,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aa083218-c3c7-bb3d-32a7-efa49d6fffc7 + - 57de128b-da10-92ab-cc36-979615425c81 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}]}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Provision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:58:52 PM","state":"CREATING","stateMessage":"Creating environment instance.","serviceName":"cloudfoundry","planName":"standard","jobId":"3079321"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}]}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Provision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:09 AM","state":"CREATING","stateMessage":"Creating environment instance.","serviceName":"cloudfoundry","planName":"standard","jobId":"3212085"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:52 GMT + - Tue, 01 Aug 2023 11:49:09 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 640503c4-aed2-4194-7b36-d25308560832 + - 1538dbe7-c39c-4085-74db-4a64da366e79 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 622.808654ms + duration: 729.391171ms - id: 5 request: proto: HTTP/1.1 @@ -353,7 +353,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -361,9 +361,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 50076e40-6f10-47d9-464e-c39ed15d5449 + - 37d8ceea-01ea-e356-1034-0b99da4070e9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:58:57 GMT + - Tue, 01 Aug 2023 11:49:14 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7ce10393-1af5-4374-484a-c561b434ca9a + - 53ff9abf-c843-48b7-6112-8658519d60b0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 275.429156ms + duration: 203.492364ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -439,9 +439,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 50076e40-6f10-47d9-464e-c39ed15d5449 + - 37d8ceea-01ea-e356-1034-0b99da4070e9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:58:54 PM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:11 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:58 GMT + - Tue, 01 Aug 2023 11:49:15 GMT Expires: - "0" Pragma: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30876769-1648-43c9-6236-f87c02c1790b + - b7d3f5b1-9381-497c-433b-dcc513c6e974 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 312.553065ms + duration: 266.123917ms - id: 7 request: proto: HTTP/1.1 @@ -507,7 +507,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -515,7 +515,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4bef0daf-15f7-7e5a-a0e0-3f4013e00490 + - 8b1f6ec3-d317-086e-1360-483150c33873 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -528,7 +528,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -537,7 +537,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:58 GMT + - Tue, 01 Aug 2023 11:49:15 GMT Expires: - "0" Pragma: @@ -551,12 +551,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cb3f3e0e-a1b3-48c7-4581-c07c11f70df7 + - 57e8dba5-c030-408f-7ff8-dcf351e96032 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 231.581044ms + duration: 407.285217ms - id: 8 request: proto: HTTP/1.1 @@ -569,7 +569,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -577,7 +577,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2fc2aaf6-4677-b0b3-46d8-ab03db1cbead + - 721fb104-bef0-a660-9798-9c81e73f4940 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -590,7 +590,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -599,7 +599,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:59 GMT + - Tue, 01 Aug 2023 11:49:16 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5820bc99-1815-40a6-4d6e-d945fcbccce7 + - 49a63571-2c32-4c90-6f60-adbd689e4de2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 317.740931ms + duration: 446.379886ms - id: 9 request: proto: HTTP/1.1 @@ -631,7 +631,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -639,9 +639,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 58ae01ac-ef5b-0996-dd49-39168b587243 + - 78224e91-d777-f4ec-0bed-2f187cb646d4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:58:59 GMT + - Tue, 01 Aug 2023 11:49:16 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - efd63033-ea7b-4567-7fa3-303adf4303bb + - cccab18e-4d05-49ae-6e6c-6051f6a9b591 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 288.486212ms + duration: 216.219294ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -717,9 +717,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 58ae01ac-ef5b-0996-dd49-39168b587243 + - 78224e91-d777-f4ec-0bed-2f187cb646d4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:58:54 PM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:11 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:58:59 GMT + - Tue, 01 Aug 2023 11:49:16 GMT Expires: - "0" Pragma: @@ -767,12 +767,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 72e2de7c-178b-4030-5c0b-e7c002b65746 + - fbe7c46b-f496-467a-6bd6-9596a6b8cb59 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 344.365228ms + duration: 233.948049ms - id: 11 request: proto: HTTP/1.1 @@ -785,7 +785,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -793,7 +793,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d3f9c198-43ed-c8da-e294-bf8956a99cd1 + - 4696634f-430f-409d-73be-ef997c62d8a0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -806,7 +806,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -815,7 +815,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:00 GMT + - Tue, 01 Aug 2023 11:49:17 GMT Expires: - "0" Pragma: @@ -829,12 +829,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 567830dd-9c86-4a6e-695a-4776728d9659 + - 5ef9cfd0-4d2b-49f5-7c87-6e3b4cdf1bbf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 319.924682ms + duration: 339.132349ms - id: 12 request: proto: HTTP/1.1 @@ -847,7 +847,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -855,7 +855,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fbe1855d-b113-328f-d8bc-4aa8eb0ed830 + - 05f5555f-e03c-eee4-3961-5bd95c91e6c0 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -868,7 +868,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -877,7 +877,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:00 GMT + - Tue, 01 Aug 2023 11:49:17 GMT Expires: - "0" Pragma: @@ -891,12 +891,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0c326c0d-9c43-4283-633f-e65d06584f04 + - a7ad2ce3-b840-41a8-7f3d-3015f11fa964 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 314.810738ms + duration: 273.542431ms - id: 13 request: proto: HTTP/1.1 @@ -909,7 +909,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -917,9 +917,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae893158-6c41-7b44-ccd8-27feb71e4f86 + - fd026696-b313-ac01-3efd-50c34948bcbb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -943,7 +943,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:00 GMT + - Tue, 01 Aug 2023 11:49:18 GMT Expires: - "0" Location: @@ -967,12 +967,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0b88da69-dc6e-474a-4aa5-1def1d9b075e + - 16efba5a-b867-48b8-5fa9-5cbc78501b87 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 242.686165ms + duration: 163.024349ms - id: 14 request: proto: "" @@ -985,7 +985,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -995,9 +995,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae893158-6c41-7b44-ccd8-27feb71e4f86 + - fd026696-b313-ac01-3efd-50c34948bcbb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1016,14 +1016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:58:54 PM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:11 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:01 GMT + - Tue, 01 Aug 2023 11:49:18 GMT Expires: - "0" Pragma: @@ -1045,12 +1045,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - de48642c-526d-4e35-7e85-141fc67dac90 + - 175abc42-e984-45db-52f8-d31d87dcaac6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 261.743121ms + duration: 238.640166ms - id: 15 request: proto: HTTP/1.1 @@ -1063,7 +1063,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1071,7 +1071,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e259dddd-2c18-e11f-bb31-f848188c9b21 + - fb32ca32-c387-d315-744f-75b80fcda6bc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1084,7 +1084,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"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: - - Thu, 20 Jul 2023 13:59:01 GMT + - Tue, 01 Aug 2023 11:49:18 GMT Expires: - "0" Pragma: @@ -1107,12 +1107,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e8af62c4-02d6-4504-7c27-e3d4d1dd1e22 + - 3029b65b-6698-41d4-7cf5-a5acb64ae524 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.761397ms + duration: 260.823098ms - id: 16 request: proto: HTTP/1.1 @@ -1125,7 +1125,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1133,7 +1133,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 998318be-b835-a0d7-af81-d3e792afff25 + - 85562366-23b6-8042-e21a-e1f0a5bdd85e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1146,7 +1146,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1155,7 +1155,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:02 GMT + - Tue, 01 Aug 2023 11:49:19 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e28f845f-69b0-4a12-5c3f-6d892ba52af8 + - 9fbec7ae-068f-4c1b-63de-81bdd9455832 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 429.525724ms + duration: 407.084292ms - id: 17 request: proto: HTTP/1.1 @@ -1187,7 +1187,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}]}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}]}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1195,9 +1195,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 42dbc276-8d9e-76e9-e0b3-f0620fe541e5 + - 9cd254ff-20b7-684a-4a3f-8bc0908e9d35 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:02 GMT + - Tue, 01 Aug 2023 11:49:19 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - dd6e0dfc-777c-4957-7356-79b3c3bfa17c + - 2fffc26d-ad0c-4a2d-4d9f-f163171125b8 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 351.144168ms + duration: 257.977951ms - id: 18 request: proto: "" @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}]}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}]}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1273,9 +1273,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 42dbc276-8d9e-76e9-e0b3-f0620fe541e5 + - 9cd254ff-20b7-684a-4a3f-8bc0908e9d35 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1294,14 +1294,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"3079329"}' + body: '{"jobId":"3212087"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:02 GMT + - Tue, 01 Aug 2023 11:49:19 GMT Expires: - "0" Pragma: @@ -1323,12 +1323,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f554a887-b330-410b-4232-94fae82bef06 + - dab2ffc7-f9f1-43be-6364-a7544cbe6e26 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 322.925912ms + duration: 210.592799ms - id: 19 request: proto: HTTP/1.1 @@ -1341,7 +1341,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1349,9 +1349,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b015def5-5ce6-bae9-c4f0-6e25c3da78b2 + - ddec5a0f-0a0e-e491-dcbe-f7e267a5e479 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1375,7 +1375,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:08 GMT + - Tue, 01 Aug 2023 11:49:25 GMT Expires: - "0" Location: @@ -1399,12 +1399,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7c9dd9fd-55ab-4993-4668-50e88aaaeaa2 + - 32c7f0f7-a16f-4ef0-4d90-caa7c873b3b3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 263.547239ms + duration: 274.958998ms - id: 20 request: proto: "" @@ -1417,7 +1417,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1427,9 +1427,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b015def5-5ce6-bae9-c4f0-6e25c3da78b2 + - ddec5a0f-0a0e-e491-dcbe-f7e267a5e479 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1448,14 +1448,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:03 PM","state":"UPDATING","stateMessage":"Updating org [cf-terraform-org]. Instance ID: DD06AFB2-7F03-4023-B78B-45F7F5BBC254.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:20 AM","state":"UPDATING","stateMessage":"Updating org [cf-terraform-org]. Instance ID: 842F0746-2D06-4027-994E-011269D1C0B3.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:08 GMT + - Tue, 01 Aug 2023 11:49:25 GMT Expires: - "0" Pragma: @@ -1477,12 +1477,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f6bf782b-1155-452c-6400-65ada8957202 + - de62b98f-8d03-4fe6-6a81-5de68fd75e41 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 295.382705ms + duration: 502.283551ms - id: 21 request: proto: HTTP/1.1 @@ -1495,7 +1495,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1503,9 +1503,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac49398c-726f-71a0-2c49-506cedf381f7 + - c89b6261-c2f0-e368-739e-74e0d7408c51 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1529,7 +1529,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:13 GMT + - Tue, 01 Aug 2023 11:49:30 GMT Expires: - "0" Location: @@ -1553,12 +1553,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 27aacfac-f5d3-4f82-698f-cf80ffe84e84 + - 827244c5-ba93-4225-64d3-a13cba0fbfdb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 308.101103ms + duration: 204.337662ms - id: 22 request: proto: "" @@ -1571,7 +1571,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1581,9 +1581,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac49398c-726f-71a0-2c49-506cedf381f7 + - c89b6261-c2f0-e368-739e-74e0d7408c51 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1602,14 +1602,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:10 PM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:30 AM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:14 GMT + - Tue, 01 Aug 2023 11:49:31 GMT Expires: - "0" Pragma: @@ -1631,12 +1631,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c13dd62d-e498-46a4-7fae-02cf256465fb + - 8ebf732e-7ce6-4825-568c-8f5cdd13649f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 590.718519ms + duration: 365.692601ms - id: 23 request: proto: HTTP/1.1 @@ -1649,7 +1649,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1657,7 +1657,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a3cd9ade-f9cc-8c77-d2d5-8418b7eca3db + - 367110cc-39a3-bbda-c447-f885a8097bf3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1670,7 +1670,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1679,7 +1679,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:14 GMT + - Tue, 01 Aug 2023 11:49:31 GMT Expires: - "0" Pragma: @@ -1693,12 +1693,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9d606f86-3ca6-41e7-67ec-44d67a0c560e + - 3a227227-7715-46e6-7a20-a9c384312fcf X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 271.282465ms + duration: 243.896016ms - id: 24 request: proto: HTTP/1.1 @@ -1711,7 +1711,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1719,7 +1719,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 646359af-7d3b-2175-66fa-8c658ea14f21 + - b5ccacc1-b630-0e7c-564f-94e46f4985d8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1732,7 +1732,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1741,7 +1741,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:15 GMT + - Tue, 01 Aug 2023 11:49:32 GMT Expires: - "0" Pragma: @@ -1755,12 +1755,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1e79ca39-96b1-438f-5019-1b2156a2e46a + - c3e12a0a-846c-487b-798e-9836b4e5ecbd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.511221ms + duration: 313.557926ms - id: 25 request: proto: HTTP/1.1 @@ -1773,7 +1773,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1781,9 +1781,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cfe4a862-d7bd-739f-6119-e6272760f881 + - c73d7ab3-ab97-c68d-f1d8-30ffabe477f6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1807,7 +1807,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:15 GMT + - Tue, 01 Aug 2023 11:49:32 GMT Expires: - "0" Location: @@ -1831,12 +1831,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b7b14f05-8c4a-4dbe-52c1-1ad814d2e22f + - f324a9ba-6508-453e-62ff-ee0a13910fff X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.26259ms + duration: 168.360812ms - id: 26 request: proto: "" @@ -1849,7 +1849,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1859,9 +1859,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cfe4a862-d7bd-739f-6119-e6272760f881 + - c73d7ab3-ab97-c68d-f1d8-30ffabe477f6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1880,14 +1880,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:10 PM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:30 AM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:17 GMT + - Tue, 01 Aug 2023 11:49:32 GMT Expires: - "0" Pragma: @@ -1909,12 +1909,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 031cbdac-e7e1-45d2-535b-bfe85c257be6 + - 4405298c-c0cc-478c-4896-850ab68ea631 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.385484296s + duration: 241.167876ms - id: 27 request: proto: HTTP/1.1 @@ -1927,7 +1927,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1935,7 +1935,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8144b4b4-58c2-4bb6-e49e-d724df9dff93 + - b3a6b6fb-be78-b713-7c46-4624e4010733 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1948,7 +1948,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -1957,7 +1957,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:17 GMT + - Tue, 01 Aug 2023 11:49:33 GMT Expires: - "0" Pragma: @@ -1971,12 +1971,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ade19f82-81a2-44b7-7122-52d937aeb790 + - 190e8b09-1a46-43d1-68ad-0ebfe45bb9b4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 279.42801ms + duration: 385.786489ms - id: 28 request: proto: HTTP/1.1 @@ -1989,7 +1989,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -1997,7 +1997,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 53c69ba8-9018-e805-5623-2cada6d14f26 + - 66794709-90e2-de05-c873-219a363f1b24 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2010,7 +2010,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -2019,7 +2019,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:17 GMT + - Tue, 01 Aug 2023 11:49:33 GMT Expires: - "0" Pragma: @@ -2033,12 +2033,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d20e8075-cf04-44b3-7c03-020ff27c28c5 + - 440ba813-0a12-43f8-4ea1-7e473932eb85 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 261.275167ms + duration: 212.493991ms - id: 29 request: proto: HTTP/1.1 @@ -2051,7 +2051,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2059,9 +2059,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f6271bb7-2b54-4bc0-2f0d-bf3ff2903d7a + - 5594a7a9-6605-ac18-f644-3cb3e46fcba8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2085,7 +2085,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:18 GMT + - Tue, 01 Aug 2023 11:49:33 GMT Expires: - "0" Location: @@ -2109,12 +2109,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9f0ce25c-d4f7-440f-6e1e-80da4be9a197 + - c494c8eb-e5b3-467c-6493-ada915239ff0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 165.00722ms + duration: 278.491008ms - id: 30 request: proto: "" @@ -2127,7 +2127,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2137,9 +2137,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f6271bb7-2b54-4bc0-2f0d-bf3ff2903d7a + - 5594a7a9-6605-ac18-f644-3cb3e46fcba8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2158,14 +2158,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:10 PM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"jane.doe@int.test\",\"email\":\"jane.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:30 AM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:18 GMT + - Tue, 01 Aug 2023 11:49:34 GMT Expires: - "0" Pragma: @@ -2187,12 +2187,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 010685a0-0d0a-4763-72f4-742163edcb77 + - 308f8c50-b07e-482a-4a7b-329deaf867d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 346.324833ms + duration: 620.746805ms - id: 31 request: proto: HTTP/1.1 @@ -2205,7 +2205,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -2213,7 +2213,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f8ddabed-3883-aaad-a2cd-2cb7397668c1 + - ffedf045-5802-8246-f2e3-88b9a9e1f77f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2226,7 +2226,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -2235,7 +2235,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:18 GMT + - Tue, 01 Aug 2023 11:49:34 GMT Expires: - "0" Pragma: @@ -2249,12 +2249,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7771d55c-09e2-4972-6233-289a505c5360 + - 60c3738d-0232-4a03-7e14-9f0302870694 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.405233ms + duration: 252.933103ms - id: 32 request: proto: HTTP/1.1 @@ -2267,7 +2267,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -2275,7 +2275,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e072ed07-aea3-d7d0-b3a1-491fdf664506 + - 7e97aef3-f815-ac0a-95e6-add5a57e22bd X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2288,7 +2288,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -2297,7 +2297,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:19 GMT + - Tue, 01 Aug 2023 11:49:35 GMT Expires: - "0" Pragma: @@ -2311,12 +2311,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 96c42dbe-9259-4a18-703e-4f86469ceeaa + - 654e9af0-934a-4631-56b2-a7f6631e961a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.599363ms + duration: 259.398762ms - id: 33 request: proto: HTTP/1.1 @@ -2329,7 +2329,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","parameters":"{\"instance_name\":\"cf-terraform-org\"}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","parameters":"{\"instance_name\":\"cf-terraform-org\"}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2337,9 +2337,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 363d28da-f8f6-6cfa-bfbc-2fbf51f7be9f + - fca6ed66-743d-32cf-5e80-338178d941da X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2363,7 +2363,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:19 GMT + - Tue, 01 Aug 2023 11:49:35 GMT Expires: - "0" Location: @@ -2387,12 +2387,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - e9fc23ad-4e4e-40e7-6cca-13d4ad62612a + - 5f8cb19e-ab67-496a-7579-569771258bfa X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 183.064798ms + duration: 199.609317ms - id: 34 request: proto: "" @@ -2405,7 +2405,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","parameters":"{\"instance_name\":\"cf-terraform-org\"}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","parameters":"{\"instance_name\":\"cf-terraform-org\"}","plan":"standard","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2415,9 +2415,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 363d28da-f8f6-6cfa-bfbc-2fbf51f7be9f + - fca6ed66-743d-32cf-5e80-338178d941da X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2436,14 +2436,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"3079344"}' + body: '{"jobId":"3212088"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:20 GMT + - Tue, 01 Aug 2023 11:49:35 GMT Expires: - "0" Pragma: @@ -2465,12 +2465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ab3857e1-5db1-48fc-47a1-20335eda927f + - 58abd590-37eb-4c0f-6353-b3ddea9031fe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.013977ms + duration: 463.088852ms - id: 35 request: proto: HTTP/1.1 @@ -2483,7 +2483,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2491,9 +2491,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 928cbc6a-dbd1-622c-13d1-6d61c63521ca + - 6e08381f-80df-ae07-460b-209778959759 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2517,7 +2517,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:25 GMT + - Tue, 01 Aug 2023 11:49:41 GMT Expires: - "0" Location: @@ -2541,12 +2541,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8ec44eff-fb37-4d0e-561c-547e74451660 + - 763f40ba-6abd-4d56-568c-3f244b04c808 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 220.27614ms + duration: 225.308543ms - id: 36 request: proto: "" @@ -2559,7 +2559,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2569,9 +2569,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 928cbc6a-dbd1-622c-13d1-6d61c63521ca + - 6e08381f-80df-ae07-460b-209778959759 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2590,14 +2590,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:21 PM","state":"UPDATING","stateMessage":"Updating org [cf-terraform-org]. Instance ID: DD06AFB2-7F03-4023-B78B-45F7F5BBC254.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:36 AM","state":"UPDATING","stateMessage":"Updating org [cf-terraform-org]. Instance ID: 842F0746-2D06-4027-994E-011269D1C0B3.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:25 GMT + - Tue, 01 Aug 2023 11:49:41 GMT Expires: - "0" Pragma: @@ -2619,12 +2619,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9f721246-60bb-47e1-5cd3-a68d5fed183d + - 7fdd4886-a8be-4ac6-6ac8-b3cbe217107e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 403.709475ms + duration: 235.100584ms - id: 37 request: proto: HTTP/1.1 @@ -2637,7 +2637,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2645,9 +2645,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - be2cbf81-7494-bfae-8e9e-e8ad052f9df0 + - 0ff4bc1d-8347-e231-804f-9d27a1060250 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2671,7 +2671,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:30 GMT + - Tue, 01 Aug 2023 11:49:46 GMT Expires: - "0" Location: @@ -2695,12 +2695,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5028991f-1635-4c2d-79a2-309a13c8e9e4 + - 49179503-4669-4703-402b-a2a8a816908f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 220.269031ms + duration: 178.20813ms - id: 38 request: proto: "" @@ -2713,7 +2713,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2723,9 +2723,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - be2cbf81-7494-bfae-8e9e-e8ad052f9df0 + - 0ff4bc1d-8347-e231-804f-9d27a1060250 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2744,14 +2744,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:30 PM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:45 AM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:31 GMT + - Tue, 01 Aug 2023 11:49:46 GMT Expires: - "0" Pragma: @@ -2773,12 +2773,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3a9b9fda-a61b-42aa-6d5e-f8850c1d0930 + - cdf9141e-72b3-497a-42f6-53fc5d0a26f7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 306.190627ms + duration: 247.659993ms - id: 39 request: proto: HTTP/1.1 @@ -2791,7 +2791,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -2799,7 +2799,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da1bc48b-1f9c-ff7b-d376-f108a63a679d + - 8abcf310-d626-69c1-f2ba-5e953a7ca7f1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2812,7 +2812,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -2821,7 +2821,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:31 GMT + - Tue, 01 Aug 2023 11:49:47 GMT Expires: - "0" Pragma: @@ -2835,12 +2835,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43d4bdbe-923d-49ce-5762-4f67d28ded90 + - c9ef800a-2376-41ed-7c7b-440b5cee35de X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 244.402324ms + duration: 375.59531ms - id: 40 request: proto: HTTP/1.1 @@ -2853,7 +2853,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -2861,7 +2861,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5973c46c-f2d7-e6e3-c797-9ff1bef16c9c + - 28448763-5673-a347-1fce-c1344ae2d6cf X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2874,7 +2874,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -2883,7 +2883,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:32 GMT + - Tue, 01 Aug 2023 11:49:47 GMT Expires: - "0" Pragma: @@ -2897,12 +2897,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3a676290-8bcb-4657-4cc0-227e9f9c62ee + - 8ec1317f-a086-474c-4915-91f7caf1f339 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 203.821418ms + duration: 231.967509ms - id: 41 request: proto: HTTP/1.1 @@ -2915,7 +2915,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2923,9 +2923,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00fd44ca-eb2c-31a8-f8b3-248e383a3da1 + - 820d7828-3582-cd97-0d02-7afd76f7f09e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2949,7 +2949,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:32 GMT + - Tue, 01 Aug 2023 11:49:48 GMT Expires: - "0" Location: @@ -2973,12 +2973,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - dc53f6fe-b19c-4730-73ae-43edd0b90f2c + - 0d489e9f-da7d-43fa-42c3-44851230f0e9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 209.040351ms + duration: 156.541536ms - id: 42 request: proto: "" @@ -2991,7 +2991,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3001,9 +3001,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00fd44ca-eb2c-31a8-f8b3-248e383a3da1 + - 820d7828-3582-cd97-0d02-7afd76f7f09e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3022,14 +3022,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:30 PM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:45 AM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:32 GMT + - Tue, 01 Aug 2023 11:49:48 GMT Expires: - "0" Pragma: @@ -3051,12 +3051,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d9a769b5-39fd-4ed7-5035-9b53e92ecbf0 + - 08c8fb30-bc3f-4fc2-75c4-de705807236d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.294839ms + duration: 233.729174ms - id: 43 request: proto: HTTP/1.1 @@ -3069,7 +3069,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -3077,7 +3077,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 15cc0e6e-e5f6-3209-e2c9-50a4ab544573 + - b6cddb53-2a9c-656f-d700-1ac9c0292d79 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -3090,7 +3090,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -3099,7 +3099,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:33 GMT + - Tue, 01 Aug 2023 11:49:48 GMT Expires: - "0" Pragma: @@ -3113,12 +3113,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a33ffbc5-e7ef-4e29-7c26-2fc21e5e2e2b + - 11d295c7-a793-4e48-6b38-d0b7425ba0a7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 236.586497ms + duration: 338.311425ms - id: 44 request: proto: HTTP/1.1 @@ -3131,7 +3131,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -3139,7 +3139,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e29c5ba0-19fb-ea98-fc9d-112d10a75735 + - 51c49881-3db7-f88c-182c-24a8a154fe67 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -3152,7 +3152,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -3161,7 +3161,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:33 GMT + - Tue, 01 Aug 2023 11:49:49 GMT Expires: - "0" Pragma: @@ -3175,12 +3175,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0d2260f3-035c-4dbc-4c90-f5e10df9d07f + - e78f2f21-22a0-4c70-55d8-66cb137980b4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 316.221977ms + duration: 261.658715ms - id: 45 request: proto: HTTP/1.1 @@ -3193,7 +3193,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: @@ -3201,7 +3201,7 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4efadd4a-98fc-597f-c61e-8b2b73c7b361 + - 8a64e0fa-6b75-3e4e-f31a-b58c233c7603 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -3214,7 +3214,7 @@ interactions: trailer: {} content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate @@ -3223,7 +3223,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:33 GMT + - Tue, 01 Aug 2023 11:49:49 GMT Expires: - "0" Pragma: @@ -3237,12 +3237,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 13028d1d-6939-4644-5103-ff0635d2ae54 + - ea0f1362-d12a-4b74-756d-ef5e5ee1bba3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 214.955271ms + duration: 240.571298ms - id: 46 request: proto: HTTP/1.1 @@ -3255,7 +3255,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"confirm":"true","environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3263,9 +3263,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2f996eb5-8394-19cb-9f99-a0d17783a30a + - 41c1ff58-9747-2114-f78c-fc89613b8843 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3289,7 +3289,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:33 GMT + - Tue, 01 Aug 2023 11:49:49 GMT Expires: - "0" Location: @@ -3313,12 +3313,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2f4d83b8-5d83-443c-6c88-51dd23e6af64 + - 0ef0b625-2bbc-45ab-7c89-c5a9dc80e3ee X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 202.07944ms + duration: 166.917643ms - id: 47 request: proto: "" @@ -3331,7 +3331,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"confirm":"true","environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3341,9 +3341,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2f996eb5-8394-19cb-9f99-a0d17783a30a + - 41c1ff58-9747-2114-f78c-fc89613b8843 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3362,14 +3362,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:30 PM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard","jobId":"3079354"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"update","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Update","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:45 AM","state":"OK","stateMessage":"Environment instance updated.","serviceName":"cloudfoundry","planName":"standard","jobId":"3212089"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:34 GMT + - Tue, 01 Aug 2023 11:49:49 GMT Expires: - "0" Pragma: @@ -3391,12 +3391,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e9e0fe8e-96ac-4fa5-429f-fa9e2a7c15cd + - a1084ba1-8da3-445d-747c-8a54c21cf7ef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 246.4586ms + duration: 170.414598ms - id: 48 request: proto: HTTP/1.1 @@ -3409,7 +3409,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3417,9 +3417,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f2d411ee-69a6-d524-4ffd-dbbf7cba9870 + - c8bd4900-32d3-6b2d-028f-7b4c78adcbc0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3443,7 +3443,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:39 GMT + - Tue, 01 Aug 2023 11:49:55 GMT Expires: - "0" Location: @@ -3467,12 +3467,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a14c1fa8-c341-4dab-48c0-f32fec9f9421 + - e5c520a0-ccb2-4a52-5153-001a1c737d88 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 202.903196ms + duration: 263.023888ms - id: 49 request: proto: "" @@ -3485,7 +3485,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3495,9 +3495,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f2d411ee-69a6-d524-4ffd-dbbf7cba9870 + - c8bd4900-32d3-6b2d-028f-7b4c78adcbc0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3516,14 +3516,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"b71b00f2-4b95-4f2a-b029-09e569e820e3\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"b71b00f2-4b95-4f2a-b029-09e569e820e3","createdDate":"Jul 20, 2023, 1:58:52 PM","modifiedDate":"Jul 20, 2023, 1:59:35 PM","state":"DELETING","stateMessage":"Deleting org ID:[b71b00f2-4b95-4f2a-b029-09e569e820e3]. Instance ID:[DD06AFB2-7F03-4023-B78B-45F7F5BBC254].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 13:59:39 GMT + - Tue, 01 Aug 2023 11:49:55 GMT Expires: - "0" Pragma: @@ -3545,12 +3545,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4dff65eb-2466-43fa-40f7-7ccd0ea2c7c4 + - f42be941-a797-4fdc-6bd7-fa68088956a1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 296.889971ms + duration: 189.99309ms - id: 50 request: proto: HTTP/1.1 @@ -3563,7 +3563,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3571,9 +3571,9 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1553dc48-d9db-e4e8-753f-bd6dc56c70bf + - b7f137b0-4326-3732-2e17-0e1c6871423c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3597,7 +3597,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 13:59:44 GMT + - Tue, 01 Aug 2023 11:50:00 GMT Expires: - "0" Location: @@ -3621,12 +3621,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - de143668-eec5-40c9-4ad4-ed19cc5b5cc2 + - 079b68f6-18df-4cd6-5690-3d7f3743c678 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 208.414628ms + duration: 228.174466ms - id: 51 request: proto: "" @@ -3639,7 +3639,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"DD06AFB2-7F03-4023-B78B-45F7F5BBC254","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3649,9 +3649,1703 @@ interactions: User-Agent: - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d3d46543-d892-d72d-b534-20ac32dc9e4b + - b7f137b0-4326-3732-2e17-0e1c6871423c X-Cpcli-Customidp: - - "" + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:50:00 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 8c44f44a-7ca3-4fc4-7219-2199aed56d93 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 200.850956ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 3dc5eb14-1429-b3de-2642-76b14a5dfc22 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:50:10 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - a789b387-f742-4a77-6499-64d236506626 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 236.180427ms + - id: 53 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 3dc5eb14-1429-b3de-2642-76b14a5dfc22 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:50:11 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 9808d964-23aa-4aea-4d07-6780a803fcfc + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 184.257361ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 8e3c445c-ba75-a6af-ddcd-3d4daf99fd50 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:50:21 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 9031648d-44ef-4fff-6075-70dd93223a2a + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 205.458779ms + - id: 55 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 8e3c445c-ba75-a6af-ddcd-3d4daf99fd50 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:50:21 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - f9ea266c-aa45-4fa7-7735-5507f71a010e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 206.686312ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 1cc16d06-9cc2-bcde-ca2f-20804750b92e + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:50:31 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 6760778a-2cc5-4325-7928-4353eb31e683 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 220.780055ms + - id: 57 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 1cc16d06-9cc2-bcde-ca2f-20804750b92e + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:50: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-Backend-Mediatype: + - application/json;charset=UTF-8 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - d6c3ab3a-752d-4570-4792-1a9e5219d37b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 292.638009ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - f30307ed-4f97-6e30-7a25-745a3756efd0 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:50:42 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 96fbb561-1f36-444c-698c-fb82c90963d5 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 384.863917ms + - id: 59 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - f30307ed-4f97-6e30-7a25-745a3756efd0 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:50:42 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 462205a1-6939-4355-7ebb-080ee6ca17bc + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 208.60271ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 371c45cf-edb0-ac9f-1e49-e030c9db60ba + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:50:52 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 3790fd62-9c66-49b4-59aa-4600bccd1dcd + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 254.257597ms + - id: 61 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 371c45cf-edb0-ac9f-1e49-e030c9db60ba + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:50: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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 1a677d9d-9fe9-411c-4f5c-ddefac27f5fd + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 186.27417ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 6043cfbe-3a0f-6ebb-43e5-a9ac90797a80 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:51:03 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 15c1dca5-4a64-4cfc-640f-68f569dcbd47 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 417.824821ms + - id: 63 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 6043cfbe-3a0f-6ebb-43e5-a9ac90797a80 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:51:03 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 70a6d823-d794-43c3-61eb-695e2de806f6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 226.390165ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - e726f1cb-4b06-d76e-b129-00913143ff5c + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:51:13 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 72a05d2b-17b1-417b-55d3-6c71f72cdbb3 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 248.84524ms + - id: 65 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - e726f1cb-4b06-d76e-b129-00913143ff5c + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:51:14 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - e5287cbf-738f-401f-6043-73b17f2d90e9 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 187.569564ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - e0a3c12c-190d-1cf8-8fd1-f61d80ee4438 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:51:24 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - a1a59a7e-b329-455a-51b5-ad8181a55a44 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 289.83163ms + - id: 67 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - e0a3c12c-190d-1cf8-8fd1-f61d80ee4438 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:51:24 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 5a211e54-ae8f-4c06-6794-ee327d448487 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 208.724529ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - f0720350-69d9-7c53-2bef-c8491897c168 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:51:34 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - f933b674-fc4d-45d3-4c47-8d8d89c31c8c + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 289.209606ms + - id: 69 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - f0720350-69d9-7c53-2bef-c8491897c168 + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:51:35 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 35e3ae33-cf51-4897-4328-7697560c475c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 198.215094ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 74641069-0397-fee9-cefc-6456dc253cdf + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:51:45 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 689a85a7-d163-4052-6c9b-d41f0c248655 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 409.247765ms + - id: 71 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 74641069-0397-fee9-cefc-6456dc253cdf + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"842F0746-2D06-4027-994E-011269D1C0B3","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"7413c3c1-5533-4292-9879-7c25d783ee45\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"7413c3c1-5533-4292-9879-7c25d783ee45","createdDate":"Aug 1, 2023, 11:49:09 AM","modifiedDate":"Aug 1, 2023, 11:49:50 AM","state":"DELETING","stateMessage":"Deleting org ID:[7413c3c1-5533-4292-9879-7c25d783ee45]. Instance ID:[842F0746-2D06-4027-994E-011269D1C0B3].","serviceName":"cloudfoundry","planName":"standard"}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Tue, 01 Aug 2023 11:51:45 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-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - bb14ea3c-72ac-4281-41aa-b91110de72c4 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 222.191838ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 91619b7c-64d7-39ce-1757-3b4dd57b07bd + X-Cpcli-Customidp: + - identityProvider + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - terraformintcanary + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + 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" + Date: + - Tue, 01 Aug 2023 11:51:56 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-acc-static-b8xxozer + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 1edd7df3-64d6-450d-62c8-38f5383bd77b + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 214.287067ms + - id: 73 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 125 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environmentID":"842F0746-2D06-4027-994E-011269D1C0B3","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + form: {} + headers: + Content-Type: + - application/json + Referer: + - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 91619b7c-64d7-39ce-1757-3b4dd57b07bd + X-Cpcli-Customidp: + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3677,7 +5371,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 14:02:02 GMT + - Tue, 01 Aug 2023 11:51:56 GMT Expires: - "0" Pragma: @@ -3699,9 +5393,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 41384d4c-be3c-4ad8-5b5d-4fe0d00e0291 + - cb191b86-1e7d-43e1-7bac-a8fd58f3df5d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 207.229487ms + duration: 159.777269ms diff --git a/internal/provider/fixtures/resource_subaccount_environment_instance.yaml b/internal/provider/fixtures/resource_subaccount_environment_instance.yaml index 936b7608..694c9cd1 100644 --- a/internal/provider/fixtures/resource_subaccount_environment_instance.yaml +++ b/internal/provider/fixtures/resource_subaccount_environment_instance.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 726bb71c-0153-82f0-7020-72575a2560ae + - dd6930eb-e555-482b-4398-bba52d6d952a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:02 GMT + - Tue, 01 Aug 2023 11:46:36 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bc44a8c9-63db-46c6-5e00-6f4ec8f6b58f + - 48f0e012-48ab-4436-4f27-035b83a44ee9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 609.2302ms + duration: 479.104129ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c834eb73-f1ed-82c0-e0c9-ad0399f0aaaa + - fd86fc75-d409-40cd-5787-556837300efa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:03 GMT + - Tue, 01 Aug 2023 11:46:37 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e9eda6ce-3a5a-4cef-7eda-05ab7e081230 + - a94a5f87-6c41-4c8c-7f36-bc781fcf7b6a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 466.7432ms + duration: 418.719084ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c67ac52a-069d-a81d-b8ec-5e292f80e3bf + - 4c5647f2-5af9-d398-14df-cca48c9fd2af X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:03 GMT + - Tue, 01 Aug 2023 11:46:37 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b7439ce-b7d1-43d7-60ca-a72394f2d06e + - f390f2dd-bb86-4dae-648c-17a88fefd198 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 441.8537ms + duration: 209.650732ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 37680cef-0243-4271-0c91-017064914a3f + - c0d7d58e-b769-9036-0579-b851acb7e4df X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:25:03 GMT + - Tue, 01 Aug 2023 11:46:37 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5adf9920-bd0d-44f7-6bed-feb3ca49f40a + - abae87d6-5a3c-43fa-5d7b-9880aefb304d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 217.8683ms + duration: 210.771252ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 37680cef-0243-4271-0c91-017064914a3f + - c0d7d58e-b769-9036-0579-b851acb7e4df X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}]}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Provision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:25:04 AM","state":"CREATING","stateMessage":"Creating environment instance.","serviceName":"cloudfoundry","planName":"standard","jobId":"3132404"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}]}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Provision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:38 AM","state":"CREATING","stateMessage":"Creating environment instance.","serviceName":"cloudfoundry","planName":"standard","jobId":"3212074"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:04 GMT + - Tue, 01 Aug 2023 11:46:38 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 780c0106-c10f-4e50-47eb-52d073dfe754 + - cbd0f117-8f68-4f49-6554-c03d61806530 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 552.2377ms + duration: 849.466375ms - id: 5 request: proto: HTTP/1.1 @@ -353,17 +353,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 727396b2-afe2-340f-7262-2cc389d6a5bc + - 64ccaf2b-e691-91ab-c4e9-180307c7b281 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:25:09 GMT + - Tue, 01 Aug 2023 11:46:43 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0ef58052-af7c-438d-7adc-172272cca5d0 + - 9e221baa-a2ef-43ae-48bb-70362e8eae1f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 237.272ms + duration: 239.750983ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 727396b2-afe2-340f-7262-2cc389d6a5bc + - 64ccaf2b-e691-91ab-c4e9-180307c7b281 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:25:06 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:41 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:09 GMT + - Tue, 01 Aug 2023 11:46:44 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 36b444d7-0ae8-4af5-547d-78dbc7efedc8 + - 727873fb-9dd7-4f95-6f47-c43b5e46c199 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 308.9971ms + duration: 420.380343ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ddcfb376-c3b8-639d-5eb0-5fc555961da2 + - b18f32b7-a25e-2434-331c-15d25432c79c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:10 GMT + - Tue, 01 Aug 2023 11:46:44 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ce76f10e-af53-4bff-62b2-b8770e7fd316 + - d3096c7b-02e6-42ca-7d6a-74efa5f46483 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 502.0318ms + duration: 353.887948ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 04fd15a0-02b0-7176-16ff-f353869b8309 + - 910260e1-d17e-d4c0-be38-f911af1fc5f3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:11 GMT + - Tue, 01 Aug 2023 11:46:45 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4ff03390-c5ac-4a2a-48fb-4c12968713c9 + - 879dbfb8-38f9-482d-599b-96d755d6b8dd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.196ms + duration: 256.910941ms - id: 9 request: proto: HTTP/1.1 @@ -631,17 +631,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7febf791-7c94-fedc-3dd2-735dc2907542 + - 97dcefd1-1d02-d429-22c9-ca8165b6a66f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:25:11 GMT + - Tue, 01 Aug 2023 11:46:45 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 102a1d09-3fc2-4bce-4a62-5cb14f42133e + - dcc86685-edbf-4d43-57f7-621e1d4caeb2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 196.6281ms + duration: 195.604872ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7febf791-7c94-fedc-3dd2-735dc2907542 + - 97dcefd1-1d02-d429-22c9-ca8165b6a66f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:25:06 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:41 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:11 GMT + - Tue, 01 Aug 2023 11:46:45 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7369b233-a106-4002-46e7-56a3a7195162 + - 5845b878-06c8-4ca2-4532-4b78588f992e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 292.1901ms + duration: 420.211593ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8436996f-45d2-0de5-692f-730b3be2dac2 + - 91c38b5f-8dad-b7cf-b90b-4be716f65857 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:24 GMT + - Tue, 01 Aug 2023 11:46:46 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0ab85414-61c5-48c7-79c4-16e8a03309f7 + - f39919fa-304f-4754-414d-000fd2cf6819 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 480.3248ms + duration: 313.432199ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f82e792d-f492-3455-29b9-e9763c18d51d + - d6ea9a4c-9f19-767a-085a-7cd812cde61b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:25 GMT + - Tue, 01 Aug 2023 11:46:46 GMT Expires: - "0" Pragma: @@ -891,12 +891,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8e177b6d-c7a9-40be-730b-7e7860c09f7d + - dd2fc63d-66c3-4232-4512-5fe45baa8b4e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 452.9437ms + duration: 192.232953ms - id: 13 request: proto: HTTP/1.1 @@ -909,17 +909,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac920ac1-2994-405c-a6ce-81fbc7f3e6e7 + - 78f0e93b-9457-a3d8-c69d-c186314fb5a5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -943,7 +943,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:25:31 GMT + - Tue, 01 Aug 2023 11:46:47 GMT Expires: - "0" Location: @@ -967,12 +967,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4733876a-108c-449a-56eb-90717191984b + - 044cc095-8fa1-4c18-7389-504aaf2f0c12 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 235.8434ms + duration: 225.554986ms - id: 14 request: proto: "" @@ -985,7 +985,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -993,11 +993,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac920ac1-2994-405c-a6ce-81fbc7f3e6e7 + - 78f0e93b-9457-a3d8-c69d-c186314fb5a5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1016,14 +1016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:25:06 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:41 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:25:31 GMT + - Tue, 01 Aug 2023 11:46:47 GMT Expires: - "0" Pragma: @@ -1045,33 +1045,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a7de74d6-577b-49b1-62e1-e3cfda2ac46c + - f7b41ef8-3cf5-4d21-659b-1d7cbea8d201 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 299.5094ms + duration: 441.591662ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c0afae75-c694-76aa-a0d7-db010ac2b582 + - db10f472-775b-71ba-48c1-46a66fcf4371 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1082,18 +1082,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:12 GMT + - Tue, 01 Aug 2023 11:46:48 GMT Expires: - "0" Pragma: @@ -1107,33 +1107,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3411716b-fe0b-4e43-690f-c839bf48e2a1 + - 5c85d83b-3481-492f-6586-dddfbfb5781a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 440.3831ms + duration: 249.649576ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ade0e4a-05de-732e-c714-cc3bec61f7ba + - ae8aaae1-1ade-5be4-1b93-0addc8319145 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1144,18 +1144,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:12 GMT + - Tue, 01 Aug 2023 11:46:48 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a70780a5-45d8-4e7d-4fdc-6bd3cd515bdf + - d6b755bd-d9d1-470c-4bd3-f884ac7dea01 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.4431ms + duration: 374.479678ms - id: 17 request: proto: HTTP/1.1 @@ -1187,17 +1187,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"confirm":"true","environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a0fa778c-b4b9-3883-d54f-dee33dd37196 + - bae9db68-78b2-5fb6-1551-605fe2f366ea X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:26:12 GMT + - Tue, 01 Aug 2023 11:46:48 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a1ff5f62-4818-4f14-5a81-78277673c558 + - 7103b008-2690-4c93-549e-849330fabf29 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 183.3648ms + duration: 150.943135ms - id: 18 request: proto: "" @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"confirm":"true","environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a0fa778c-b4b9-3883-d54f-dee33dd37196 + - bae9db68-78b2-5fb6-1551-605fe2f366ea X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1294,14 +1294,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:25:06 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard","jobId":"3132409"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"provision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\"}","labels":"{\"API Endpoint\":\"https:\/\/api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Provision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:41 AM","state":"OK","stateMessage":"Environment instance created.","serviceName":"cloudfoundry","planName":"standard","jobId":"3212076"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:13 GMT + - Tue, 01 Aug 2023 11:46:48 GMT Expires: - "0" Pragma: @@ -1323,12 +1323,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a526d48b-8407-497e-558e-5c65241fd36a + - 306270f1-18a1-4043-63f8-8b7ac799724a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 210.0816ms + duration: 239.22151ms - id: 19 request: proto: HTTP/1.1 @@ -1341,17 +1341,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4514a4b0-f063-7cfb-8e9c-b81e694d9d3a + - 81de7095-a041-e834-b460-fbc267906c84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1375,7 +1375,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:26:18 GMT + - Tue, 01 Aug 2023 11:46:54 GMT Expires: - "0" Location: @@ -1399,12 +1399,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - cb6df3c3-e985-4002-48bb-2fba3b4dce7b + - 0e62bb12-607e-4f56-593e-24123368aa13 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 178.2979ms + duration: 207.002035ms - id: 20 request: proto: "" @@ -1417,7 +1417,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1425,11 +1425,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4514a4b0-f063-7cfb-8e9c-b81e694d9d3a + - 81de7095-a041-e834-b460-fbc267906c84 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1448,14 +1448,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:18 GMT + - Tue, 01 Aug 2023 11:46:54 GMT Expires: - "0" Pragma: @@ -1477,12 +1477,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d9681102-0deb-4e2d-7748-7000b014b220 + - 902947e4-a1d8-476d-4059-862a88e7c033 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 225.4613ms + duration: 369.296126ms - id: 21 request: proto: HTTP/1.1 @@ -1495,17 +1495,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bbf9863a-ab00-f60a-c93a-70c6685504f5 + - be1af0ad-631a-44af-519f-24bc88056973 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1529,7 +1529,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:26:23 GMT + - Tue, 01 Aug 2023 11:46:59 GMT Expires: - "0" Location: @@ -1553,12 +1553,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f239aa0b-5b67-49cd-5fcb-8f9c662592bd + - 8e5f7076-1cb9-4186-4e47-5cfb0c3b3765 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 212.9372ms + duration: 269.406177ms - id: 22 request: proto: "" @@ -1571,7 +1571,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1579,11 +1579,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bbf9863a-ab00-f60a-c93a-70c6685504f5 + - be1af0ad-631a-44af-519f-24bc88056973 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1602,14 +1602,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:23 GMT + - Tue, 01 Aug 2023 11:46:59 GMT Expires: - "0" Pragma: @@ -1631,12 +1631,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 90d80736-4509-420d-7da5-ee371e49c1a7 + - a1522141-1f02-4091-5b17-8a70b3a482b1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 236.9509ms + duration: 195.85003ms - id: 23 request: proto: HTTP/1.1 @@ -1649,17 +1649,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 84079994-b341-671f-c423-ee48306521d5 + - 75d01544-85d9-7b74-bd28-b76f12641239 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1683,7 +1683,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:26:34 GMT + - Tue, 01 Aug 2023 11:47:10 GMT Expires: - "0" Location: @@ -1707,12 +1707,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 57b2eb56-8ea7-4923-7997-14a6c26e146a + - ec5a6695-0ebf-4272-715b-f36be5312d71 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 238.6851ms + duration: 206.362315ms - id: 24 request: proto: "" @@ -1725,7 +1725,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1733,11 +1733,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 84079994-b341-671f-c423-ee48306521d5 + - 75d01544-85d9-7b74-bd28-b76f12641239 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1756,14 +1756,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:34 GMT + - Tue, 01 Aug 2023 11:47:10 GMT Expires: - "0" Pragma: @@ -1785,12 +1785,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 17a8248b-9ffa-4061-5475-fc1ce22323e7 + - b84369df-7f1d-45b1-77e8-2b9f26e17407 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 213.4889ms + duration: 387.7454ms - id: 25 request: proto: HTTP/1.1 @@ -1803,17 +1803,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d229bdd8-4d29-aab5-9719-a12efbf7af8c + - ea9f0ea8-8a45-c6a1-bab8-3140de6db8de X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1837,7 +1837,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:26:44 GMT + - Tue, 01 Aug 2023 11:47:20 GMT Expires: - "0" Location: @@ -1861,12 +1861,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6e0a4fd1-d402-4c3b-69ae-7af67bf41a3a + - f8334b1e-b1b6-4cb6-5b75-2d256d3b4dde X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 225.5858ms + duration: 284.00223ms - id: 26 request: proto: "" @@ -1879,7 +1879,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -1887,11 +1887,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d229bdd8-4d29-aab5-9719-a12efbf7af8c + - ea9f0ea8-8a45-c6a1-bab8-3140de6db8de X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1910,14 +1910,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:44 GMT + - Tue, 01 Aug 2023 11:47:21 GMT Expires: - "0" Pragma: @@ -1939,12 +1939,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ad593d43-d842-4c44-63a6-f3856df4d061 + - 841a42f3-ac70-46b5-7985-1e8063479901 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 226.1151ms + duration: 322.680431ms - id: 27 request: proto: HTTP/1.1 @@ -1957,17 +1957,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93ee960b-20e3-0470-36a8-32c2fde8d354 + - 1fab94b8-ab85-eef1-c8fa-710cfa9789c0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1991,7 +1991,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:26:55 GMT + - Tue, 01 Aug 2023 11:47:31 GMT Expires: - "0" Location: @@ -2015,12 +2015,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 64c595bc-b99f-427b-7fbf-7a700fa5c9cd + - b94b9d07-1041-4d37-76a3-8e858828111d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 222.5197ms + duration: 479.591358ms - id: 28 request: proto: "" @@ -2033,7 +2033,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2041,11 +2041,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93ee960b-20e3-0470-36a8-32c2fde8d354 + - 1fab94b8-ab85-eef1-c8fa-710cfa9789c0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2064,14 +2064,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:26:55 GMT + - Tue, 01 Aug 2023 11:47:31 GMT Expires: - "0" Pragma: @@ -2093,12 +2093,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 28985175-f8b9-4d4c-75f3-1099bcafc5f7 + - b4b4484f-3fe0-4347-6140-7011dd028203 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 253.1283ms + duration: 214.972941ms - id: 29 request: proto: HTTP/1.1 @@ -2111,17 +2111,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2ffea6cf-af0a-f265-b1b7-fd8f94649a2a + - 6b672309-bbf1-bed8-dd84-6de13898122d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2145,7 +2145,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:27:05 GMT + - Tue, 01 Aug 2023 11:47:42 GMT Expires: - "0" Location: @@ -2169,12 +2169,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7007a253-3d03-4968-4ed4-20b3ba7a5726 + - 571d6d90-2113-4621-7c62-8807787831f5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 164.1258ms + duration: 328.293447ms - id: 30 request: proto: "" @@ -2187,7 +2187,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2195,11 +2195,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2ffea6cf-af0a-f265-b1b7-fd8f94649a2a + - 6b672309-bbf1-bed8-dd84-6de13898122d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2218,14 +2218,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:27:05 GMT + - Tue, 01 Aug 2023 11:47:42 GMT Expires: - "0" Pragma: @@ -2247,12 +2247,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7bb580cd-1f48-4645-4d96-31ea55ede924 + - fd81c2b3-47ef-418d-656b-314c28aede27 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 230.3292ms + duration: 190.314979ms - id: 31 request: proto: HTTP/1.1 @@ -2265,17 +2265,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac233ccc-d6b5-5953-3adb-242eeb370ac3 + - 1bc8f818-1d1b-1af1-818e-5b8f068818c7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2299,7 +2299,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:27:16 GMT + - Tue, 01 Aug 2023 11:47:52 GMT Expires: - "0" Location: @@ -2323,12 +2323,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 805b283b-4440-4c74-4dfa-cdc6166770b2 + - 29348772-c1d5-40b0-6c2b-65116f920e67 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 285.5024ms + duration: 254.731191ms - id: 32 request: proto: "" @@ -2341,7 +2341,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2349,11 +2349,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ac233ccc-d6b5-5953-3adb-242eeb370ac3 + - 1bc8f818-1d1b-1af1-818e-5b8f068818c7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2372,14 +2372,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:27:16 GMT + - Tue, 01 Aug 2023 11:47:52 GMT Expires: - "0" Pragma: @@ -2401,12 +2401,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 82c0fa50-92f3-49fd-5939-3175d118efb4 + - 24f021c8-f4c0-48d5-4908-f82a99e5986e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 254.5891ms + duration: 213.320209ms - id: 33 request: proto: HTTP/1.1 @@ -2419,17 +2419,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 500f6058-6bdd-89fa-250d-4e1c3083add4 + - cfa81e9e-d11a-ded7-6693-ce648c0f1a78 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2453,7 +2453,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:27:26 GMT + - Tue, 01 Aug 2023 11:48:03 GMT Expires: - "0" Location: @@ -2477,12 +2477,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b49837e4-76e4-4ef8-51dc-f2f1bd28e7b5 + - 6fa7bd7a-37f0-4b91-411a-e68de552dce5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 237.3614ms + duration: 302.780344ms - id: 34 request: proto: "" @@ -2495,7 +2495,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2503,11 +2503,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 500f6058-6bdd-89fa-250d-4e1c3083add4 + - cfa81e9e-d11a-ded7-6693-ce648c0f1a78 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2526,14 +2526,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:27:26 GMT + - Tue, 01 Aug 2023 11:48:03 GMT Expires: - "0" Pragma: @@ -2555,12 +2555,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1b4fd013-47e9-432d-62f6-bda167de3a3a + - 3ee8e833-e919-47af-7625-8897a83cc499 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 240.0794ms + duration: 411.741104ms - id: 35 request: proto: HTTP/1.1 @@ -2573,17 +2573,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aeb7d8aa-df09-3491-cb0c-87e96adf02ed + - 3f25dfc8-2900-6ea3-04d2-92d724b9fcb8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2607,7 +2607,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:27:36 GMT + - Tue, 01 Aug 2023 11:48:13 GMT Expires: - "0" Location: @@ -2631,12 +2631,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5efbf336-c9c1-4278-4c0b-8244812e1d08 + - 1d3ba1d9-9a91-4980-5b34-6ae4e51374a2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 209.4389ms + duration: 279.743129ms - id: 36 request: proto: "" @@ -2649,7 +2649,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2657,11 +2657,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aeb7d8aa-df09-3491-cb0c-87e96adf02ed + - 3f25dfc8-2900-6ea3-04d2-92d724b9fcb8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2680,14 +2680,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:27:37 GMT + - Tue, 01 Aug 2023 11:48:13 GMT Expires: - "0" Pragma: @@ -2709,12 +2709,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bb2ccd63-2874-40f8-789a-799cd2548be4 + - 73e81fb3-869f-4081-6090-29d2b8027574 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 208.5349ms + duration: 209.242346ms - id: 37 request: proto: HTTP/1.1 @@ -2727,17 +2727,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f307f320-a0c5-24f6-cdf0-9e536d267314 + - efeccbb8-d5ed-e5c5-e2f9-0e62dcca58fb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2761,7 +2761,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:27:47 GMT + - Tue, 01 Aug 2023 11:48:24 GMT Expires: - "0" Location: @@ -2785,12 +2785,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 4a41dcf1-c599-497d-7c32-68c7ed281227 + - eb2b6325-8617-4c03-723a-2fe8d726b373 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 168.7249ms + duration: 200.405906ms - id: 38 request: proto: "" @@ -2803,7 +2803,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2811,11 +2811,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f307f320-a0c5-24f6-cdf0-9e536d267314 + - efeccbb8-d5ed-e5c5-e2f9-0e62dcca58fb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2834,14 +2834,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:27:47 GMT + - Tue, 01 Aug 2023 11:48:24 GMT Expires: - "0" Pragma: @@ -2863,12 +2863,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30eb3d03-b76d-4ace-6b47-5f1916bc3451 + - 2d9ce2db-cc2f-413a-61c4-52ce4717abb6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 243.0874ms + duration: 340.592297ms - id: 39 request: proto: HTTP/1.1 @@ -2881,17 +2881,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da049cd5-c483-825b-e3c9-99baa788684d + - ec2bf800-15fe-4343-116b-1d068b98e74e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2915,7 +2915,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:27:57 GMT + - Tue, 01 Aug 2023 11:48:34 GMT Expires: - "0" Location: @@ -2939,12 +2939,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8c29584e-e6cc-4716-4fc4-9baad3e9038b + - d92eb795-c308-4bc6-68c5-323d0fc787bb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 170.0129ms + duration: 222.067997ms - id: 40 request: proto: "" @@ -2957,7 +2957,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -2965,11 +2965,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da049cd5-c483-825b-e3c9-99baa788684d + - ec2bf800-15fe-4343-116b-1d068b98e74e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2988,14 +2988,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:27:58 GMT + - Tue, 01 Aug 2023 11:48:35 GMT Expires: - "0" Pragma: @@ -3017,12 +3017,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bf0ad406-e369-4702-7391-9d9c036ffac4 + - 7c3a1522-fdb6-4ca5-5750-fcd499d97009 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 215.2977ms + duration: 409.198167ms - id: 41 request: proto: HTTP/1.1 @@ -3035,17 +3035,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2388d1f6-7398-0103-f9b2-2fbc561121fa + - 93967e30-9580-103b-f740-50fe37b8fe66 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3069,7 +3069,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:28:08 GMT + - Tue, 01 Aug 2023 11:48:45 GMT Expires: - "0" Location: @@ -3093,12 +3093,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5b4b48ad-3b62-4c5e-5054-fd7f196465f7 + - 7e3c4e2a-ae5a-4d38-629d-f1079039a479 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 174.5675ms + duration: 227.156943ms - id: 42 request: proto: "" @@ -3111,7 +3111,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3119,11 +3119,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2388d1f6-7398-0103-f9b2-2fbc561121fa + - 93967e30-9580-103b-f740-50fe37b8fe66 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3142,14 +3142,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:46:49 AM","state":"DELETING","stateMessage":"Deleting org ID:[5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2]. Instance ID:[7EC77B84-3B35-4954-B168-0693788E9964].","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:28:08 GMT + - Tue, 01 Aug 2023 11:48:45 GMT Expires: - "0" Pragma: @@ -3171,12 +3171,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a1d72ac6-d817-4847-5030-ca041ae6b462 + - b544748b-4b4e-4780-7793-1ef078b56fd9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 184.7342ms + duration: 202.823292ms - id: 43 request: proto: HTTP/1.1 @@ -3189,17 +3189,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f02a0658-4790-7ab2-8f4f-806bf23e7e87 + - b9bdd097-bfdc-458e-8446-a448fe9fb763 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3223,7 +3223,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:28:18 GMT + - Tue, 01 Aug 2023 11:48:55 GMT Expires: - "0" Location: @@ -3247,12 +3247,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 11376aba-e52d-4a7f-567e-bc6c3093ee52 + - 0adc85e5-28b4-464d-66b0-dfb4c5f90347 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.7334ms + duration: 175.808775ms - id: 44 request: proto: "" @@ -3265,7 +3265,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3273,11 +3273,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f02a0658-4790-7ab2-8f4f-806bf23e7e87 + - b9bdd097-bfdc-458e-8446-a448fe9fb763 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3296,14 +3296,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"653F6904-8B25-493A-BBBE-F4788EDA30ED","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"ff185006-358f-4640-9f79-cf0b660f8a9e\"}","customLabels":{},"type":"Deprovision","status":"Processing","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"ff185006-358f-4640-9f79-cf0b660f8a9e","createdDate":"Jul 24, 2023, 6:25:04 AM","modifiedDate":"Jul 24, 2023, 6:26:14 AM","state":"DELETING","stateMessage":"Deleting org ID:[ff185006-358f-4640-9f79-cf0b660f8a9e]. Instance ID:[653F6904-8B25-493A-BBBE-F4788EDA30ED].","serviceName":"cloudfoundry","planName":"standard"}' + body: '{"id":"7EC77B84-3B35-4954-B168-0693788E9964","name":"cloudFoundry-from-terraform","brokerId":"1101E504-06B5-49B3-88E9-A21F1FEE35A2","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccountGUID":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","tenantId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","serviceId":"fa31b750-375f-4268-bee1-604811a89fd9","planId":"fc5abe63-2a7d-4848-babf-f63a5d316df1","operation":"deprovision","parameters":"{\"instance_name\":\"cf-terraform-org\",\"users\":[{\"id\":\"john.doe@int.test\",\"email\":\"john.doe@int.test\"}],\"status\":\"ACTIVE\",\"purge\":false}","labels":"{\"API Endpoint\":\"https://api.cf.eu12.hana.ondemand.com\",\"Org Name\":\"cf-terraform-org\",\"Org ID\":\"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2\"}","customLabels":{},"type":"Deprovision","status":"Processed","environmentType":"cloudfoundry","landscapeLabel":"cf-eu12","platformId":"5c7456d7-e42d-42ca-bdd6-ccfc2c8a19f2","createdDate":"Aug 1, 2023, 11:46:38 AM","modifiedDate":"Aug 1, 2023, 11:48:55 AM","state":"DELETING","serviceName":"cloudfoundry","planName":"standard"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:28:18 GMT + - Tue, 01 Aug 2023 11:48:56 GMT Expires: - "0" Pragma: @@ -3325,12 +3325,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0175e6d1-0dd5-46c6-64c3-8a311c6d2137 + - a942ae6c-10e3-4928-71d4-2a1080a636b7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 222.0316ms + duration: 231.121592ms - id: 45 request: proto: HTTP/1.1 @@ -3343,17 +3343,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a28e6f58-204b-1a39-0f7d-b8ffbc9d29a2 + - 6847d2b9-6270-c844-8417-7f4e27a0ef56 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3377,7 +3377,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 06:28:28 GMT + - Tue, 01 Aug 2023 11:49:06 GMT Expires: - "0" Location: @@ -3401,12 +3401,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c7f63ee9-a9d9-4a57-4f51-116e8d7e2f1a + - 20c4547c-1d57-4469-548a-e7f7de0705ab X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 187.661ms + duration: 225.20366ms - id: 46 request: proto: "" @@ -3419,7 +3419,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"environmentID":"653F6904-8B25-493A-BBBE-F4788EDA30ED","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} + {"paramValues":{"environmentID":"7EC77B84-3B35-4954-B168-0693788E9964","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} form: {} headers: Content-Type: @@ -3427,11 +3427,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/environment-instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a28e6f58-204b-1a39-0f7d-b8ffbc9d29a2 + - 6847d2b9-6270-c844-8417-7f4e27a0ef56 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -3457,7 +3457,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 06:28:29 GMT + - Tue, 01 Aug 2023 11:49:06 GMT Expires: - "0" Pragma: @@ -3479,9 +3479,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ad13b0bf-6dec-4ea5-7864-20667cd4ed22 + - 7cae5ea4-aa2d-4bc2-416e-c82068702a29 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 143.6573ms + duration: 135.113157ms diff --git a/internal/provider/fixtures/resource_subaccount_role_collection.import_error.yaml b/internal/provider/fixtures/resource_subaccount_role_collection.import_error.yaml index d95b15a2..4c96b51a 100644 --- a/internal/provider/fixtures/resource_subaccount_role_collection.import_error.yaml +++ b/internal/provider/fixtures/resource_subaccount_role_collection.import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0d21e736-0588-b549-95fc-60eec946d4b3 + - 434258af-b9f7-462c-675a-ef07a01e96dc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:18 GMT + - Tue, 01 Aug 2023 07:31:28 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 69e78ff0-a5d4-4cfd-4920-dab6c37564f3 + - b020468d-623b-4e31-5ee8-f3233b408b61 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 335.3811ms + duration: 289.79359ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 26c710a4-d73e-294b-8fb0-f212c15e4e3c + - ddc729b8-74dc-d659-c2de-70c08ec07606 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:18 GMT + - Tue, 01 Aug 2023 07:31:28 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dba487ac-b01b-42cf-53bc-f202da309cc1 + - 553b8093-28b8-45f4-6197-35ede3b600ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 372.457ms + duration: 182.401653ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0ff4a373-0512-4947-a0e2-970027aadd3d + - 505b4960-2ce3-5b5a-9f7c-cbdfab4174d2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:19 GMT + - Tue, 01 Aug 2023 07:31:28 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4ffa2f7f-8253-4b0f-79a8-057be6922630 + - 92378aeb-ade1-41f6-5594-376799138376 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 374.0871ms + duration: 204.410462ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2d93e14a-d9c5-75e2-e580-59be3cecb6d5 + - a6f4b20d-d043-f845-0922-ee963d426592 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:19 GMT + - Tue, 01 Aug 2023 07:31:29 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 336cced6-459a-421e-7b5c-5993df21b738 + - 69e028ca-1f86-42cc-5b41-8f9fc8d66b5f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 168.9981ms + duration: 258.509065ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2d93e14a-d9c5-75e2-e580-59be3cecb6d5 + - a6f4b20d-d043-f845-0922-ee963d426592 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -313,7 +313,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:19 GMT + - Tue, 01 Aug 2023 07:31:29 GMT Expires: - "0" Pragma: @@ -335,33 +335,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3dc105a1-6cf8-49a1-4b21-e89b8683a223 + - 390767b5-462b-4895-4893-4da05cf727f1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 100.5313ms + duration: 219.218492ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 34b4c52e-f6b1-76f3-a040-9ed423d79015 + - bf3af2fa-6a73-177c-f225-1666c09cd032 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -372,18 +372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:19 GMT + - Tue, 01 Aug 2023 07:31:29 GMT Expires: - "0" Pragma: @@ -397,33 +397,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b12a38d0-9e78-4bf0-76d4-1a211796b43d + - 8e0b72a2-f550-4e24-5b2a-4d4e4d5b411a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 416.573ms + duration: 192.890052ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 00e918c9-357d-81b6-c2e5-4a598c5bea74 + - 89df9e4c-86e6-74a4-7abf-959d02db63f6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:20 GMT + - Tue, 01 Aug 2023 07:31:30 GMT Expires: - "0" Pragma: @@ -459,12 +459,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0808c86c-540d-4595-4fb0-912d49458942 + - 847d7863-d946-43d7-6235-87d05110851a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 365.7442ms + duration: 302.812483ms - id: 7 request: proto: HTTP/1.1 @@ -483,11 +483,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9ac79e33-5f9b-2099-19f8-ba60b88fb198 + - 34649ce0-bf55-8edb-7da5-5dd355f9a02e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -511,7 +511,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:20 GMT + - Tue, 01 Aug 2023 07:31:30 GMT Expires: - "0" Location: @@ -535,12 +535,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - ffc53273-8dc2-4876-664c-06531807c632 + - a16a773a-e416-4456-66ab-01183696fdc2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 179.6908ms + duration: 204.587625ms - id: 8 request: proto: "" @@ -561,11 +561,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9ac79e33-5f9b-2099-19f8-ba60b88fb198 + - 34649ce0-bf55-8edb-7da5-5dd355f9a02e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -591,7 +591,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:20 GMT + - Tue, 01 Aug 2023 07:31:30 GMT Expires: - "0" Pragma: @@ -613,33 +613,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 793945f0-c1f2-4769-7417-8305c501b8bd + - e2a4d540-0700-4650-7d90-7e5c213db7f7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 119.5369ms + duration: 88.632914ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cfd3d90c-a498-99a9-9a23-9b78c493121e + - a32b515b-5196-9ba0-e11c-cc286116d6c8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -650,18 +650,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:21 GMT + - Tue, 01 Aug 2023 07:31:30 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3bcce063-adf2-4003-75ae-e21dd9123120 + - d109153a-03fc-41c3-4b22-9011efeb162a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 344.7492ms + duration: 182.779231ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2d6c24ae-88b0-2cc6-def9-2e2de8c74b76 + - 1829e3e9-3e91-7664-bbfd-0a69fc40ad0e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:21 GMT + - Tue, 01 Aug 2023 07:31:31 GMT Expires: - "0" Pragma: @@ -737,33 +737,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ab3ad67b-89bf-4f30-4f5f-5646bc8c7fc4 + - 790df4cf-1e38-445a-468d-c084705cc8cd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 418.9628ms + duration: 276.367305ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0c6a7c4e-5293-f7f0-9c45-3d4e0b25e621 + - 6a997e1b-92f0-1894-22ce-ebdd992f1b9e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -774,18 +774,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:22 GMT + - Tue, 01 Aug 2023 07:31:31 GMT Expires: - "0" Pragma: @@ -799,33 +799,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 77504118-f3a9-4d12-744e-2931f4a9134d + - 1c1afbe2-d0c9-4716-6b9c-0b0605ed9021 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 432.0509ms + duration: 264.435199ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3c6ee241-e2e6-6a10-f643-4cb1bc54e1e9 + - 453c51fc-83e5-3316-6564-0f316d1c4269 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -836,18 +836,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:22 GMT + - Tue, 01 Aug 2023 07:31:32 GMT Expires: - "0" Pragma: @@ -861,12 +861,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c0467155-e50e-432f-5adf-17a3215e5d25 + - bea34544-e7a6-44fc-4513-8e0c6a2958f0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 367.1155ms + duration: 190.384383ms - id: 13 request: proto: HTTP/1.1 @@ -885,11 +885,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b9bb458-4857-5ad6-f814-573cc58c14d0 + - db05314f-4d12-1fea-9133-8a44a209ebdf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -913,7 +913,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:22 GMT + - Tue, 01 Aug 2023 07:31:32 GMT Expires: - "0" Location: @@ -937,12 +937,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 72e0da15-0ee5-4880-68b1-7f65867110ad + - 39a6b43a-ab21-44a0-6ff4-08154750b619 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 170.0099ms + duration: 170.430992ms - id: 14 request: proto: "" @@ -963,11 +963,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b9bb458-4857-5ad6-f814-573cc58c14d0 + - db05314f-4d12-1fea-9133-8a44a209ebdf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -993,7 +993,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:22 GMT + - Tue, 01 Aug 2023 07:31:32 GMT Expires: - "0" Pragma: @@ -1013,9 +1013,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8a6aec18-9ca6-4a97-5f91-deaa56ec6bd7 + - 9c623837-2a54-4955-6a71-3f6ed957c6a7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 151.6481ms + duration: 89.381045ms diff --git a/internal/provider/fixtures/resource_subaccount_role_collection.update.yaml b/internal/provider/fixtures/resource_subaccount_role_collection.update.yaml index f65fa1f5..e572ab3d 100644 --- a/internal/provider/fixtures/resource_subaccount_role_collection.update.yaml +++ b/internal/provider/fixtures/resource_subaccount_role_collection.update.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a72c48cb-632a-0889-c2c0-f6735f08f07d + - 7a9da017-8983-6dba-a955-c69402bddaa6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:07 GMT + - Tue, 01 Aug 2023 07:31:17 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - abdb155a-f759-4e2d-5bc2-32f4b6e3ca9b + - 64a270b6-577f-4688-470a-7fdf24bfa1fc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.0023ms + duration: 276.457459ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0cf92db1-ba02-377a-8e9b-24ff90639e58 + - ec7dc9d9-cd8a-81dd-4eb1-9149527be2a6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:07 GMT + - Tue, 01 Aug 2023 07:31:17 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7fa0ea8b-1d48-4c8a-6898-30e902e0c042 + - 2fa79405-3cad-4f3d-7657-db2716bcedf8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.3688ms + duration: 201.382266ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f13b0874-8f3b-4837-13d5-44e66ad5825e + - d5df5344-f0cc-563c-deb9-a737e432bb19 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:08 GMT + - Tue, 01 Aug 2023 07:31:18 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0ff420c0-03bf-40cb-4213-51e5a7a00e51 + - 64ed91e3-5807-4aa1-7c98-7bee15c56fd0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.1788ms + duration: 281.533273ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ec852298-73a5-c290-021c-74d62b943b1a + - ece17ec9-c990-2a7b-0ecc-83ecd4cc0c34 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:08 GMT + - Tue, 01 Aug 2023 07:31:18 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5d827158-2150-4115-5e91-a0b0cbccc18e + - 195c2082-e4a8-4834-6c7e-2a4e0c1da6eb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 181.1388ms + duration: 166.398571ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ec852298-73a5-c290-021c-74d62b943b1a + - ece17ec9-c990-2a7b-0ecc-83ecd4cc0c34 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -313,7 +313,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:08 GMT + - Tue, 01 Aug 2023 07:31:18 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cbd30c55-4243-4bcd-5e68-3be49e6edcd4 + - 6e1a9ef5-40d1-4172-4c65-9870575735a7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 120.3404ms + duration: 109.382877ms - id: 5 request: proto: HTTP/1.1 @@ -359,11 +359,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a9fa95da-1957-16fa-ef41-25cbedada3c6 + - e8c47404-3963-4a1b-f2e2-d50aebad5327 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:08 GMT + - Tue, 01 Aug 2023 07:31:18 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9a1f712f-54b7-4087-6c05-4ba9db67a5f9 + - cfdc962a-c3e1-4a4f-7f1c-9f8873ee5f40 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 211.939ms + duration: 150.004795ms - id: 6 request: proto: "" @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?add User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a9fa95da-1957-16fa-ef41-25cbedada3c6 + - e8c47404-3963-4a1b-f2e2-d50aebad5327 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -467,7 +467,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:08 GMT + - Tue, 01 Aug 2023 07:31:18 GMT Expires: - "0" Pragma: @@ -487,12 +487,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 91356479-2b01-4dee-7ff4-4e12b1e06b72 + - c90c63a2-088f-40d5-4944-09178d5d41c2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 132.5389ms + duration: 218.29275ms - id: 7 request: proto: HTTP/1.1 @@ -511,11 +511,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 48cd8f53-17be-3395-e737-759fcb584a35 + - 85aa40f8-3209-3913-bbb7-7df66932109c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -539,7 +539,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:08 GMT + - Tue, 01 Aug 2023 07:31:19 GMT Expires: - "0" Location: @@ -563,12 +563,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - aec66cbd-8199-4de3-5ea2-1ba61c8afb80 + - 3b5d8003-3c26-4aa0-6c87-38d3b178d909 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 162.7326ms + duration: 163.187704ms - id: 8 request: proto: "" @@ -589,11 +589,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?add User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 48cd8f53-17be-3395-e737-759fcb584a35 + - 85aa40f8-3209-3913-bbb7-7df66932109c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -619,7 +619,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:09 GMT + - Tue, 01 Aug 2023 07:31:19 GMT Expires: - "0" Pragma: @@ -639,33 +639,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - dcd01b9d-59ec-40f4-7af3-ab6f490f535b + - fa19853b-8a31-4c06-6f26-7cc6777f9324 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 141.3094ms + duration: 208.854848ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 29b4d046-801b-a1ac-f01c-00a32e1abda7 + - 5372d04a-6a2d-7a1d-feed-af4545d1473b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -676,18 +676,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:09 GMT + - Tue, 01 Aug 2023 07:31:19 GMT Expires: - "0" Pragma: @@ -701,33 +701,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2a51d76a-77ae-4c67-4446-22e0acb6f3f9 + - 84bafd41-6cbe-4914-5edf-b967f28e21c7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.2828ms + duration: 182.579175ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fe2fd220-03a5-6e94-bf08-49ea148133ec + - 0b1697ba-87b5-9669-c357-9aa34d51744f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -738,18 +738,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:10 GMT + - Tue, 01 Aug 2023 07:31:20 GMT Expires: - "0" Pragma: @@ -763,12 +763,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3fdcaa12-a3bd-4557-585d-ef02d35e137e + - c5dc3f3b-f735-4b36-7553-994e33dbd8c8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 393.9914ms + duration: 228.123109ms - id: 11 request: proto: HTTP/1.1 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a8485ca-9ee0-016e-f92b-6ce8b1102c6d + - 60f8e847-e2c5-3dd7-5dce-45b7ce07dabf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -815,7 +815,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:10 GMT + - Tue, 01 Aug 2023 07:31:20 GMT Expires: - "0" Location: @@ -839,12 +839,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b10c8576-1d18-4e85-4fbf-fa73acfdf960 + - c0073d70-0150-44a0-76a0-cf8a3a9ebd23 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 159.795ms + duration: 167.019451ms - id: 12 request: proto: "" @@ -865,11 +865,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a8485ca-9ee0-016e-f92b-6ce8b1102c6d + - 60f8e847-e2c5-3dd7-5dce-45b7ce07dabf X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -895,7 +895,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:10 GMT + - Tue, 01 Aug 2023 07:31:20 GMT Expires: - "0" Pragma: @@ -917,33 +917,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 54a47a85-7605-4184-6396-b21af7371f3c + - d6d2a2ef-ab49-4d57-527f-162d2b880d9f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 173.9984ms + duration: 99.493701ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 739bd3d8-0ab3-fa1f-1475-a2925f2d7c61 + - 31dc1bd5-fe82-60be-8e7d-1ebf56135ecb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -954,18 +954,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:10 GMT + - Tue, 01 Aug 2023 07:31:20 GMT Expires: - "0" Pragma: @@ -979,33 +979,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c47ec530-53b5-431b-5495-543994fa59e4 + - 5191d0c7-5146-4dc2-579f-ed0fdb961067 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 391.6728ms + duration: 284.579915ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d6b3197c-c96c-c2d1-523e-08ee8ba89323 + - 14240160-055d-c709-dd11-ede323c3ca66 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1016,18 +1016,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:11 GMT + - Tue, 01 Aug 2023 07:31:21 GMT Expires: - "0" Pragma: @@ -1041,12 +1041,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 10e3edce-f404-498f-7d38-03de78d346dc + - db2fa1d0-cfb4-4e78-52cf-d0e198ccd790 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 404.0136ms + duration: 244.759079ms - id: 15 request: proto: HTTP/1.1 @@ -1065,11 +1065,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2065f11f-e78d-1d65-136e-8f4c77060306 + - 4f48fb74-d500-fcf8-8825-84a1500fbdc3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1093,7 +1093,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:11 GMT + - Tue, 01 Aug 2023 07:31:21 GMT Expires: - "0" Location: @@ -1117,12 +1117,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8cc73725-9235-459a-767c-488b96c514bb + - 14f1fac3-a02a-4fd4-6050-8dce38884c74 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 183.723ms + duration: 165.661327ms - id: 16 request: proto: "" @@ -1143,11 +1143,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2065f11f-e78d-1d65-136e-8f4c77060306 + - 4f48fb74-d500-fcf8-8825-84a1500fbdc3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1173,7 +1173,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:11 GMT + - Tue, 01 Aug 2023 07:31:21 GMT Expires: - "0" Pragma: @@ -1195,33 +1195,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 63729025-9aa5-4d7a-7f34-552e5ebdf9fd + - b1c4adb1-a83d-4a2c-48a9-f9f125838cc3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 93.1058ms + duration: 200.317637ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 29bacbfb-e6ad-bd40-65bd-ee879cdb9526 + - c021ae86-1a7b-8a6e-143b-9889e7910d40 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1232,18 +1232,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:12 GMT + - Tue, 01 Aug 2023 07:31:21 GMT Expires: - "0" Pragma: @@ -1257,33 +1257,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4e1c715f-c437-48c7-67f4-64722392f735 + - 6cea6bbd-d791-4e3b-5eb7-de8e155627a7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 356.529ms + duration: 289.911568ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 71307ca3-31b1-a247-460f-c0f2470cbbf7 + - de3ccc5c-3ec4-aae7-b274-0a5e62a66961 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1294,18 +1294,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:12 GMT + - Tue, 01 Aug 2023 07:31:22 GMT Expires: - "0" Pragma: @@ -1319,12 +1319,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 46d9d808-b2bc-4578-56b5-33b9b60c4734 + - 6db93235-1869-4349-6a50-7081f52bddba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 341.5027ms + duration: 192.926084ms - id: 19 request: proto: HTTP/1.1 @@ -1343,11 +1343,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b411b41-81ca-f2a4-b85f-0497ae2d8570 + - e1dfeb67-6fb4-e49c-d7ae-c64754bf7d03 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1371,7 +1371,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:12 GMT + - Tue, 01 Aug 2023 07:31:22 GMT Expires: - "0" Location: @@ -1395,12 +1395,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - f5d09366-8bc4-4eb1-6b31-de3339cdb8b9 + - ff0f34d4-f73c-4397-5acb-f62827be0a02 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 209.8095ms + duration: 260.780171ms - id: 20 request: proto: "" @@ -1421,11 +1421,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?update User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b411b41-81ca-f2a4-b85f-0497ae2d8570 + - e1dfeb67-6fb4-e49c-d7ae-c64754bf7d03 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1451,7 +1451,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:12 GMT + - Tue, 01 Aug 2023 07:31:22 GMT Expires: - "0" Pragma: @@ -1471,12 +1471,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b5ce1521-2da2-443c-6f3e-fccf556c4e12 + - 218c57cf-5bb6-4855-58ee-a54d2a2bc2d0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 135.8883ms + duration: 191.27311ms - id: 21 request: proto: HTTP/1.1 @@ -1495,11 +1495,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7e2ee162-214c-b1c7-789e-560cef17663b + - 835955bd-8f52-c860-ad3a-ad0bdf6a68d6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1523,7 +1523,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:22 GMT Expires: - "0" Location: @@ -1547,12 +1547,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1b199609-89f9-4df6-59f3-6e37b397faca + - 14cc5bda-70d3-4af1-7458-7dd5398c778d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 182.6067ms + duration: 169.026885ms - id: 22 request: proto: "" @@ -1573,11 +1573,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?remove User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7e2ee162-214c-b1c7-789e-560cef17663b + - 835955bd-8f52-c860-ad3a-ad0bdf6a68d6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1603,7 +1603,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:23 GMT Expires: - "0" Pragma: @@ -1623,12 +1623,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2e1b95ee-1b4f-471e-6031-86c80e853f74 + - 3275e649-fa65-487b-51e1-059b7c210d45 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 108.8702ms + duration: 213.183092ms - id: 23 request: proto: HTTP/1.1 @@ -1647,11 +1647,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14debc36-b9c5-fbdd-cd7b-45eb1ff86aa5 + - 91c746cb-94fd-7622-492f-96b6c9c9b5fd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1675,7 +1675,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:23 GMT Expires: - "0" Location: @@ -1699,12 +1699,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 1dff3aa5-7741-4b97-62d1-a902b7a00c2c + - f60e56ee-fdc9-4ddd-5f1f-2bed828ed739 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 167.1307ms + duration: 167.2164ms - id: 24 request: proto: "" @@ -1725,11 +1725,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?remove User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 14debc36-b9c5-fbdd-cd7b-45eb1ff86aa5 + - 91c746cb-94fd-7622-492f-96b6c9c9b5fd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1755,7 +1755,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:23 GMT Expires: - "0" Pragma: @@ -1775,12 +1775,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d8ad6990-e1c8-4e8c-6840-9b99781552b8 + - d29007f5-aff0-45c3-65bd-371516ac8e48 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 148.4563ms + duration: 100.792401ms - id: 25 request: proto: HTTP/1.1 @@ -1799,11 +1799,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d39eedd3-365f-b7b2-319d-322308e84e1f + - aa8a15ba-89b3-5c4c-37e6-82a4c66bf499 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1827,7 +1827,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:23 GMT Expires: - "0" Location: @@ -1851,12 +1851,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 30cf4bcc-3dee-4a07-580b-d95bed87bf52 + - 7f451100-ee67-4f4b-45e8-2cacb3ca952a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 212.1237ms + duration: 159.273943ms - id: 26 request: proto: "" @@ -1877,11 +1877,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?add User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d39eedd3-365f-b7b2-319d-322308e84e1f + - aa8a15ba-89b3-5c4c-37e6-82a4c66bf499 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1907,7 +1907,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:23 GMT Expires: - "0" Pragma: @@ -1927,12 +1927,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 48ec0020-0272-4ddc-5d50-48510655a293 + - c1cceeca-114f-4e9b-755c-f6afa261d215 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 97.7853ms + duration: 86.890125ms - id: 27 request: proto: HTTP/1.1 @@ -1951,11 +1951,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d5d2c751-0083-bd6f-41c5-9f54fe2e390f + - a41cd287-63e7-8293-9a96-83a1c747eb42 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1979,7 +1979,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:13 GMT + - Tue, 01 Aug 2023 07:31:23 GMT Expires: - "0" Location: @@ -2003,12 +2003,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7a219c0d-6379-4428-7990-01628afc77b3 + - 2311a7e6-b1ab-4773-758f-4a6f0417d88a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 153.4516ms + duration: 231.961495ms - id: 28 request: proto: "" @@ -2029,11 +2029,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d5d2c751-0083-bd6f-41c5-9f54fe2e390f + - a41cd287-63e7-8293-9a96-83a1c747eb42 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2059,7 +2059,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:14 GMT + - Tue, 01 Aug 2023 07:31:24 GMT Expires: - "0" Pragma: @@ -2081,33 +2081,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d5ab67a0-ef36-4d00-4d67-df13c7d652b7 + - 33e646b9-2939-47ad-706a-c66a65c0c7c9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 86.0078ms + duration: 74.702434ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bd06dac5-596a-c0c3-2169-d9bd298dedc6 + - c1fa552b-c20e-65aa-bb46-16b3153c2cf5 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2118,18 +2118,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:14 GMT + - Tue, 01 Aug 2023 07:31:24 GMT Expires: - "0" Pragma: @@ -2143,33 +2143,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 086049b4-8771-47fc-4b35-f990efc7f3b9 + - ca2fddb6-0afd-494c-498f-ade8a93d6ee0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 351.7035ms + duration: 253.542832ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6eef0d78-aa53-6ccf-2b63-91ec3560cb0e + - 6b735db1-b4c8-6679-4e10-d4e7f1705b02 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2180,18 +2180,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:14 GMT + - Tue, 01 Aug 2023 07:31:24 GMT Expires: - "0" Pragma: @@ -2205,12 +2205,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1c6c13d0-26b2-4bef-4f84-d69331bfbf9e + - 68710698-0641-4957-5bd3-30415b880d8a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 339.4294ms + duration: 312.303129ms - id: 31 request: proto: HTTP/1.1 @@ -2229,11 +2229,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2e2e8de5-6af1-adee-6860-a3d93ced9129 + - 3b716952-acdb-a94c-bd94-3a63bbacd6ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2257,7 +2257,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:15 GMT + - Tue, 01 Aug 2023 07:31:25 GMT Expires: - "0" Location: @@ -2281,12 +2281,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 05412619-16b1-4394-7df4-5c4c6e98105b + - 37fe6a72-1910-4226-5d5b-146d9fdcbb4c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 188.0881ms + duration: 184.519651ms - id: 32 request: proto: "" @@ -2307,11 +2307,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2e2e8de5-6af1-adee-6860-a3d93ced9129 + - 3b716952-acdb-a94c-bd94-3a63bbacd6ed X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2337,7 +2337,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:15 GMT + - Tue, 01 Aug 2023 07:31:25 GMT Expires: - "0" Pragma: @@ -2359,33 +2359,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 264b1cb2-3736-4754-6cbd-7aeb4bce7c15 + - b70c1733-9eb5-4a78-7e65-904e6db50e5e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 120.3904ms + duration: 237.411073ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6cf2d8fe-6dbf-680d-c558-b5ba93be141c + - 5fe46599-f46f-d51b-748d-6a46f425a281 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2396,18 +2396,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:15 GMT + - Tue, 01 Aug 2023 07:31:25 GMT Expires: - "0" Pragma: @@ -2421,33 +2421,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 647c7be5-3c04-4b02-745e-2b807ccbf543 + - 837819aa-d638-4d3d-470b-efbd4ef93935 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 351.2423ms + duration: 227.777889ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 61d62f48-7f1f-3c5e-41d6-273f28b8abd7 + - d286442c-352f-16d5-f608-a22b2d9b9b4d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2458,18 +2458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:16 GMT + - Tue, 01 Aug 2023 07:31:26 GMT Expires: - "0" Pragma: @@ -2483,12 +2483,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d9462d47-43f4-4762-7b55-670b4b192da9 + - 6b363d77-2e43-40b4-692c-98d472434ab3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 356.7005ms + duration: 210.209114ms - id: 35 request: proto: HTTP/1.1 @@ -2507,11 +2507,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b9fac701-d1c9-72c2-24e6-d9c5fb9cb1f2 + - 534a82bd-54d9-79c2-5a37-70ded17fdb9f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2535,7 +2535,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:16 GMT + - Tue, 01 Aug 2023 07:31:26 GMT Expires: - "0" Location: @@ -2559,12 +2559,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6ceb9d6e-1f95-4f0a-786d-55330fb37024 + - 83dbcf61-ef50-4113-4aaf-6d1a91c191a5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 205.4848ms + duration: 149.58452ms - id: 36 request: proto: "" @@ -2585,11 +2585,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b9fac701-d1c9-72c2-24e6-d9c5fb9cb1f2 + - 534a82bd-54d9-79c2-5a37-70ded17fdb9f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2615,7 +2615,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:16 GMT + - Tue, 01 Aug 2023 07:31:26 GMT Expires: - "0" Pragma: @@ -2637,33 +2637,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7f3d6cf9-0aeb-474d-6216-3585b3a25852 + - d0691ef3-11a2-4d15-4919-cd1f579ae1de X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 102.532ms + duration: 78.094693ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e2d5e59c-5769-b3f1-a900-4e38a826a33b + - df815b6f-51c1-b37f-8ee7-add0f0ceac31 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2674,18 +2674,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:16 GMT + - Tue, 01 Aug 2023 07:31:27 GMT Expires: - "0" Pragma: @@ -2699,33 +2699,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7ca61e9f-347e-40de-553e-e8720175e5ea + - 223d92d7-77d3-43f1-6266-bf70c1a01c1c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.1269ms + duration: 397.2359ms - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 715f8111-2b26-216a-3f24-bf0eed893c60 + - af8d3a92-1b71-5cd1-9bb1-225f20b3b544 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2736,18 +2736,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:17 GMT + - Tue, 01 Aug 2023 07:31:27 GMT Expires: - "0" Pragma: @@ -2761,12 +2761,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 84edbe6a-0884-4e7f-5d3e-ed23c7e8b580 + - 87b3c4a8-5a8d-4da2-533f-e642100b0e27 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.8634ms + duration: 281.817901ms - id: 39 request: proto: HTTP/1.1 @@ -2785,11 +2785,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a269d06-ca57-963b-190f-21d6c60550db + - dc897dc2-a006-9f27-9a57-78276fda45a0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2813,7 +2813,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:17 GMT + - Tue, 01 Aug 2023 07:31:27 GMT Expires: - "0" Location: @@ -2837,12 +2837,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0220a94a-e031-438f-47fd-4077a3384528 + - 650d6367-6af1-49e5-4c08-3fa15268e1a1 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 190.5621ms + duration: 161.737141ms - id: 40 request: proto: "" @@ -2863,11 +2863,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a269d06-ca57-963b-190f-21d6c60550db + - dc897dc2-a006-9f27-9a57-78276fda45a0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2893,7 +2893,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:17 GMT + - Tue, 01 Aug 2023 07:31:27 GMT Expires: - "0" Pragma: @@ -2913,9 +2913,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3056ac92-511d-4c9c-42fd-104d7a43e000 + - 64c1ebef-2adb-40db-6735-88e9e932caef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 104.1882ms + duration: 93.787927ms diff --git a/internal/provider/fixtures/resource_subaccount_role_collection.yaml b/internal/provider/fixtures/resource_subaccount_role_collection.yaml index 0b4f616e..f77c70d6 100644 --- a/internal/provider/fixtures/resource_subaccount_role_collection.yaml +++ b/internal/provider/fixtures/resource_subaccount_role_collection.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3b21136b-6f8f-91ce-1dd6-ada3c93bcef6 + - 8fb00581-7fc4-112a-07fc-4ca8e7e59116 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:33:59 GMT + - Tue, 01 Aug 2023 07:31:10 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6bc0cee0-0695-4a91-7a36-435cfb99d0b8 + - 60ba8b00-014e-4ce1-4f07-e8cd0bd15e03 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 985.702ms + duration: 443.047898ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a88639eb-e749-7f35-7720-afa5bb193619 + - 764c4580-0954-bf3b-a863-7b7d6c88cb39 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:00 GMT + - Tue, 01 Aug 2023 07:31:11 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ebe1b224-f2e7-4ec6-4c59-533741c01f33 + - 3fc7d8ec-fd07-4b25-4124-22db3ee6fa95 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 496.4194ms + duration: 276.049078ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c84556e3-f710-38e5-5f33-3e45192e36be + - b48d4b74-c152-5f5c-e7f4-153df98872d8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:00 GMT + - Tue, 01 Aug 2023 07:31:11 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 32338e8a-d148-41fc-79a5-992b0d102b1d + - b4dad604-207a-4815-4e48-aead1fb66941 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 429.3353ms + duration: 200.834788ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a40816b6-057a-53cd-bfa8-aa9b16f64e29 + - 3d741ad8-f13d-f1cc-4805-492ddb9baed4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:01 GMT + - Tue, 01 Aug 2023 07:31:11 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5c5258fc-eb35-4a03-7cd6-8b1bd24129aa + - 4e4e84a3-a280-42af-61cd-d31a30c5315b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 287.31ms + duration: 175.645879ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a40816b6-057a-53cd-bfa8-aa9b16f64e29 + - 3d741ad8-f13d-f1cc-4805-492ddb9baed4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -313,7 +313,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:01 GMT + - Tue, 01 Aug 2023 07:31:12 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 449c177b-2707-4652-6ec6-af1bb765448b + - 707cd639-a609-4f70-58c7-697af8864d03 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 493.802ms + duration: 581.603168ms - id: 5 request: proto: HTTP/1.1 @@ -359,11 +359,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 721da227-910d-1d01-4d90-dd74ecb64b71 + - f671e6a6-8fcb-2772-b040-12477a20241b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:01 GMT + - Tue, 01 Aug 2023 07:31:12 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - a0389a60-91a6-4614-7860-4517e9fc75e4 + - fc38c619-6a55-4b0e-7b25-8ea2ecc1add9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 233.981ms + duration: 163.939445ms - id: 6 request: proto: "" @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?add User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 721da227-910d-1d01-4d90-dd74ecb64b71 + - f671e6a6-8fcb-2772-b040-12477a20241b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -467,7 +467,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:01 GMT + - Tue, 01 Aug 2023 07:31:12 GMT Expires: - "0" Pragma: @@ -487,12 +487,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6ab435f2-6d60-4a5f-6d7c-459046f18e36 + - 29f55a5f-d932-41cb-7682-f73899d01749 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 218.7602ms + duration: 273.794703ms - id: 7 request: proto: HTTP/1.1 @@ -511,11 +511,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2c95edbe-536c-2519-a79c-565f27293755 + - 0483131b-2b13-cefe-53dc-f249dedb5435 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -539,7 +539,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:02 GMT + - Tue, 01 Aug 2023 07:31:12 GMT Expires: - "0" Location: @@ -563,12 +563,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - fd0ea498-2cc6-41ed-7d25-291afd888be1 + - 5f0301e3-8c55-41b5-47d2-e1b6303e9556 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 258.5608ms + duration: 170.962132ms - id: 8 request: proto: "" @@ -589,11 +589,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?add User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2c95edbe-536c-2519-a79c-565f27293755 + - 0483131b-2b13-cefe-53dc-f249dedb5435 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -619,7 +619,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:02 GMT + - Tue, 01 Aug 2023 07:31:13 GMT Expires: - "0" Pragma: @@ -639,33 +639,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1773d7cf-2da6-4eae-68b3-e06c9ff6dfe8 + - f3b7a8c3-4bf9-4bbf-7ccd-c4eda6688fa2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 176.5055ms + duration: 271.429806ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d984b461-02a4-3a87-08c2-c0dc869be6ba + - f00efcf4-28f7-2f2a-c57e-8c42e652fce9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -676,18 +676,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:02 GMT + - Tue, 01 Aug 2023 07:31:13 GMT Expires: - "0" Pragma: @@ -701,33 +701,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ce456855-3b9b-4c32-7e7d-df8af427160b + - 3cdc6254-db9b-4363-6c0f-f5b3fc5f4cfc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 373.5809ms + duration: 273.987106ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 59b0d122-0b4b-20eb-4945-9543080f63ec + - 45db307f-01a6-0d83-2c7a-3340fc0e0c7c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -738,18 +738,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:03 GMT + - Tue, 01 Aug 2023 07:31:14 GMT Expires: - "0" Pragma: @@ -763,12 +763,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 19cac51e-f0c5-40e9-6d6c-abdaf19c98b7 + - 6839b7a0-4795-451a-769c-d6e02abd815f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.1325ms + duration: 257.137754ms - id: 11 request: proto: HTTP/1.1 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7ee18e45-b199-d12a-174a-e0741466eb28 + - dbe28013-f766-e4f5-153f-47b587821115 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -815,7 +815,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:03 GMT + - Tue, 01 Aug 2023 07:31:14 GMT Expires: - "0" Location: @@ -839,12 +839,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 12123248-27e6-4cde-6f86-1650e7c55e8d + - 7abc34ff-52f4-406a-63fe-d486f41e0673 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 201.0141ms + duration: 150.740222ms - id: 12 request: proto: "" @@ -865,11 +865,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7ee18e45-b199-d12a-174a-e0741466eb28 + - dbe28013-f766-e4f5-153f-47b587821115 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -895,7 +895,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:03 GMT + - Tue, 01 Aug 2023 07:31:14 GMT Expires: - "0" Pragma: @@ -917,33 +917,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9b254e2c-b858-4127-4212-64804d3164f6 + - b4a48795-5ff2-4468-78fe-413f6e7e7d4c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 156.1427ms + duration: 242.332152ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1ca8fdb4-848c-dff6-87cd-abce0481eb8a + - 1974a75d-ba47-373d-bddb-76357493a355 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -954,18 +954,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:04 GMT + - Tue, 01 Aug 2023 07:31:14 GMT Expires: - "0" Pragma: @@ -979,33 +979,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2ea480e2-27b9-455f-4b7d-c7de01a3dea6 + - eef31e9e-2411-4643-4907-b39f3514bbac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.369ms + duration: 198.796931ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 10af93f1-697e-3386-82a2-176faf4a71fa + - 339e0d3e-ff9d-037f-f67d-091861d9ed7b X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1016,18 +1016,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:04 GMT + - Tue, 01 Aug 2023 07:31:15 GMT Expires: - "0" Pragma: @@ -1041,12 +1041,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6d014221-bf73-457e-7bfa-737bd844508a + - bd34e665-cd07-44d4-4597-71b10c9909a9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 339.5159ms + duration: 229.365163ms - id: 15 request: proto: HTTP/1.1 @@ -1065,11 +1065,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c7f818d-f0a3-07e3-d369-0e5eef2f525c + - 0fdc5c86-bc84-1213-227d-8f1650b553c0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1093,7 +1093,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:04 GMT + - Tue, 01 Aug 2023 07:31:15 GMT Expires: - "0" Location: @@ -1117,12 +1117,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 10cf76ba-4ca6-43af-50e1-073b32d41660 + - be9d0ed0-9c9f-42c9-7a6f-3d7d35b3c838 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 277.4486ms + duration: 266.159125ms - id: 16 request: proto: "" @@ -1143,11 +1143,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8c7f818d-f0a3-07e3-d369-0e5eef2f525c + - 0fdc5c86-bc84-1213-227d-8f1650b553c0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1173,7 +1173,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:05 GMT + - Tue, 01 Aug 2023 07:31:15 GMT Expires: - "0" Pragma: @@ -1195,33 +1195,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 64088e79-40b8-42bc-5e8a-8e8b659547ca + - fee9541f-7c85-4797-7bb9-a5024b6df0cb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 188.0786ms + duration: 91.237681ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0184728c-6623-7131-b3b3-398d70707ddc + - c2bfb609-1ea2-c28f-8f59-b70df81b05c1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1232,18 +1232,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:05 GMT + - Tue, 01 Aug 2023 07:31:16 GMT Expires: - "0" Pragma: @@ -1257,33 +1257,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a1688607-86e7-48d9-74b2-0b2cd321b604 + - 16ded71e-3316-4578-67f7-3006ad1ae578 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 468.1672ms + duration: 205.559369ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1a642d43-13a0-cc25-c749-3b1b78e26c83 + - d384a90b-19f2-99fb-563f-9c624402da70 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1294,18 +1294,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:06 GMT + - Tue, 01 Aug 2023 07:31:16 GMT Expires: - "0" Pragma: @@ -1319,12 +1319,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b13f14d0-b07c-4497-45a3-405b30325b3d + - 4cd6b181-5739-496c-7b7a-42579d20625a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 461.4954ms + duration: 212.691717ms - id: 19 request: proto: HTTP/1.1 @@ -1343,11 +1343,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d8fb2f1c-b4cd-207d-60b5-a8dc2039be51 + - 4a3243d9-27c7-b137-90df-c142fba9923c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1371,7 +1371,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:34:06 GMT + - Tue, 01 Aug 2023 07:31:16 GMT Expires: - "0" Location: @@ -1395,12 +1395,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6d908c46-fabe-4534-68f8-627c4a888756 + - 610e91a7-3f9c-42fc-53bb-ff24a0347c91 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 291.2109ms + duration: 157.317777ms - id: 20 request: proto: "" @@ -1421,11 +1421,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d8fb2f1c-b4cd-207d-60b5-a8dc2039be51 + - 4a3243d9-27c7-b137-90df-c142fba9923c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1451,7 +1451,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:34:06 GMT + - Tue, 01 Aug 2023 07:31:16 GMT Expires: - "0" Pragma: @@ -1471,9 +1471,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b7a91451-f8d9-48a7-7c95-9bfe9f8f2702 + - 7822d3e0-e824-45f1-4c38-6b13ae060575 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 125.7925ms + duration: 110.284917ms diff --git a/internal/provider/fixtures/resource_subaccount_role_collection_assignment.yaml b/internal/provider/fixtures/resource_subaccount_role_collection_assignment.yaml index 325f4616..47172169 100644 --- a/internal/provider/fixtures/resource_subaccount_role_collection_assignment.yaml +++ b/internal/provider/fixtures/resource_subaccount_role_collection_assignment.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1e55314b-ff68-a998-c6f6-1401bfab392a + - 6e5953df-ad73-ad13-c8b4-aadf324fddc3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:30 GMT + - Tue, 01 Aug 2023 07:33:38 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ac979f64-7172-4915-5cf4-f226c88efe70 + - eef773e9-8fd0-4c30-7ca4-dcfa0933254b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 712.5883ms + duration: 371.740006ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 26184942-208e-af2a-7e01-368bc31408c3 + - e2e51272-85b8-0d84-60ac-3b05944e902c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:30 GMT + - Tue, 01 Aug 2023 07:33:38 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 52db3195-d7ad-4460-5f03-384c60c6f71c + - 8e10e764-805e-480e-4690-f4d7ee72794b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 392.6308ms + duration: 204.559471ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7adc4d38-99f4-9e91-0ef0-eb8ba81fad56 + - dae6b27c-e97c-837b-db8b-92a5b7b2d47d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:30 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 66dcaa7f-0f09-42ed-7770-5f577deae7be + - f98c503a-ce93-4301-54e1-d100f6106c81 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.0816ms + duration: 430.516594ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e973eac-a694-b8eb-a674-b20bf19c93c9 + - 00785bcc-d509-106b-75d7-83518b7e6db6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:36:31 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 89906aad-3ac1-49be-6275-53fc7cb1ce16 + - ab249e68-7931-4bd8-536b-2d73f5a362df X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 211.5405ms + duration: 151.628846ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?assign User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9e973eac-a694-b8eb-a674-b20bf19c93c9 + - 00785bcc-d509-106b-75d7-83518b7e6db6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":5,"active":true,"roleCollections":["Destination Administrator"]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":17,"active":true,"roleCollections":["Destination Administrator"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:31 GMT + - Tue, 01 Aug 2023 07:33:39 GMT Expires: - "0" Pragma: @@ -335,33 +335,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 168de444-6a93-4a93-5155-08cec78f4ce0 + - de15575e-926c-4e3a-6c3f-c09cc4a7ae68 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 414.656ms + duration: 236.498779ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2bbfc4b9-026f-fec2-8432-2ba9259d47a5 + - afbfba10-6bfb-d89a-e3bc-ea3154791bba X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -372,18 +372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:32 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Pragma: @@ -397,33 +397,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb56922c-697e-4f09-4948-8d6e9ee87636 + - 117a70b5-def4-47bc-47ec-0d395e31faed X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.8336ms + duration: 192.754303ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2c085042-68bd-4881-9dcc-20207aa2e940 + - 1131e865-f384-8745-1b13-7c358dd343d2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:32 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Pragma: @@ -459,33 +459,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ce350c2c-ea76-47e9-7cc9-339e398e5395 + - f644a70e-8bea-4f20-73fd-7380f25c5556 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.8628ms + duration: 211.131539ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fe69ea65-7298-6b63-15dd-aa582ce99468 + - 448a0fc3-15da-4a8f-3ca8-c5639da9b233 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -496,18 +496,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:33 GMT + - Tue, 01 Aug 2023 07:33:40 GMT Expires: - "0" Pragma: @@ -521,33 +521,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 13cd8ab4-4859-4b91-6782-549670a9a406 + - 4bbf5882-b5cf-4ac8-41c1-0960455de3b5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.8998ms + duration: 214.03011ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 530e0d97-b6b1-d1b6-9693-827f067ae538 + - ec2eab20-2252-e423-412e-f75756d3bb3d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -558,18 +558,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:33 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Pragma: @@ -583,33 +583,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f737cdf4-5c28-4848-4e64-b6577691a7b0 + - 774627d6-d0f9-4c80-6c21-a0494094ea95 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 364.2976ms + duration: 373.881113ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1edf8b8e-04f5-86b0-2a56-360ebd4d46a3 + - 9a00e6e2-7748-20e0-d1cd-0f9ff7193828 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -620,18 +620,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:33 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Pragma: @@ -645,12 +645,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb86a937-7ce0-4aac-78fd-0f90ac9b5ef4 + - 755bbda4-8393-4d0d-70d1-1b7a329dac10 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 395.3064ms + duration: 394.853519ms - id: 10 request: proto: HTTP/1.1 @@ -669,11 +669,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7021b809-1fe4-f257-fc8c-76216b575b8c + - dcbda5db-d15a-2bcc-33f9-ad059a3d1905 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -697,7 +697,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:36:34 GMT + - Tue, 01 Aug 2023 07:33:41 GMT Expires: - "0" Location: @@ -721,12 +721,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b593ce47-2ff6-4d86-74ba-4f003c39299e + - 9d18a8df-c670-4335-48b5-b18ffbb7e23d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.2662ms + duration: 191.998236ms - id: 11 request: proto: "" @@ -747,11 +747,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?unassign User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7021b809-1fe4-f257-fc8c-76216b575b8c + - dcbda5db-d15a-2bcc-33f9-ad059a3d1905 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -770,14 +770,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":6,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":18,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:34 GMT + - Tue, 01 Aug 2023 07:33:42 GMT Expires: - "0" Pragma: @@ -799,9 +799,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 67579c07-35f8-4588-6020-7c5daba4e926 + - 8f613460-37d5-46c1-5616-c30eb9b3ed56 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 217.484ms + duration: 188.514974ms diff --git a/internal/provider/fixtures/resource_subaccount_role_collection_assignment_import_error.yaml b/internal/provider/fixtures/resource_subaccount_role_collection_assignment_import_error.yaml index b4480bc3..97a424cf 100644 --- a/internal/provider/fixtures/resource_subaccount_role_collection_assignment_import_error.yaml +++ b/internal/provider/fixtures/resource_subaccount_role_collection_assignment_import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9d2edd39-0cb2-5c26-0c09-655fd471fae9 + - 3c88006c-fa72-3a32-b240-7e60e62ffead X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:39 GMT + - Tue, 01 Aug 2023 07:33:46 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 08004b5e-a46d-4f1f-5348-2cdac56965d0 + - 59afcda6-f79a-42e9-5a85-284f2554ba2d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 339.2173ms + duration: 275.765705ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4135c960-0f9c-4126-d01a-916f544ffb4f + - 8451f6fe-a5e0-caf1-55fd-e9f910e789ad X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:39 GMT + - Tue, 01 Aug 2023 07:33:47 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a2bdc1bd-0e48-497a-6db5-bdcfa340d679 + - b273a16b-7dff-4940-5a4a-24e50391b0d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.8127ms + duration: 198.443388ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a08137a9-519a-73a6-d365-ed8b87a98a14 + - ccba8dcc-9840-c0ba-4432-309f68ce09ec X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:40 GMT + - Tue, 01 Aug 2023 07:33:47 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 3b58ef6b-3d3c-430b-63cd-2b2d5215375c + - e41ca6bc-1c91-4d3c-7c06-04b43c793027 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.1238ms + duration: 321.6305ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8d0aa064-f4f0-f496-78b1-a13ea7bc7b54 + - 86615620-fdee-b304-04f4-72e480488fcd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:36:40 GMT + - Tue, 01 Aug 2023 07:33:48 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2cadd396-7f3a-48cc-7721-60d1b6f5ec51 + - 72e2e0b7-fc80-4a7c-7c64-232dd3b7b36b X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 170.537ms + duration: 361.726776ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?assign User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8d0aa064-f4f0-f496-78b1-a13ea7bc7b54 + - 86615620-fdee-b304-04f4-72e480488fcd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":7,"active":true,"roleCollections":["Destination Administrator"]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":19,"active":true,"roleCollections":["Destination Administrator"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:40 GMT + - Tue, 01 Aug 2023 07:33:48 GMT Expires: - "0" Pragma: @@ -335,33 +335,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fe217f78-bb09-4014-7366-e5098baaab6d + - 7c583708-788e-416b-56d3-eeb02083bc57 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 233.9083ms + duration: 184.226843ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3b9c7805-9841-84b9-6e36-a9fc9a0e2dc1 + - 537cf8e4-c923-7feb-af1d-5acf105864be X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -372,18 +372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:41 GMT + - Tue, 01 Aug 2023 07:33:48 GMT Expires: - "0" Pragma: @@ -397,33 +397,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9ea57dc5-1a06-43c6-77ab-03dfc9140ead + - cbd920c7-03fd-454d-40ed-43ca6a50e5f1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 337.2898ms + duration: 263.318704ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0743e2b6-1cb1-3ae0-db6a-6566de7c04e1 + - e0a0767d-1ed9-9213-d846-7d9f3a66c5bb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:41 GMT + - Tue, 01 Aug 2023 07:33:49 GMT Expires: - "0" Pragma: @@ -459,33 +459,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5c76d7e5-c2b8-4258-6977-fb6c4bda6b0a + - eb2d26ed-7f4c-46bc-5848-6b266f2f3439 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.0063ms + duration: 287.338865ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2200744d-6a0b-7a2b-6eea-410f2d02fe0b + - 9e4d36a5-74c8-7b89-18c7-ebb694879604 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -496,18 +496,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:41 GMT + - Tue, 01 Aug 2023 07:33:49 GMT Expires: - "0" Pragma: @@ -521,33 +521,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d1eb4b38-2b39-4967-5f16-c7a61a397ca5 + - f58edc70-f5b2-494a-58fd-9d135bc273ef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.1857ms + duration: 290.843463ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fe74c093-98d4-b92b-64e9-a1ed6dc04991 + - 2749c32a-0e8b-2d96-014e-3eba60fca9de X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -558,18 +558,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:42 GMT + - Tue, 01 Aug 2023 07:33:50 GMT Expires: - "0" Pragma: @@ -583,33 +583,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 50d2a251-d7f8-4523-7600-3b3c5ed45035 + - 1b173c85-7aa9-4581-420b-bc1a232eb55c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.964ms + duration: 184.316121ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 486db651-0552-8338-4353-83c6598a3653 + - f38bf46a-8f0c-76fd-34bf-98ac41d1047e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -620,18 +620,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:42 GMT + - Tue, 01 Aug 2023 07:33:50 GMT Expires: - "0" Pragma: @@ -645,33 +645,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 94711c43-f196-4c5b-5f8b-01890a8bcbf1 + - aea1a4a0-78f0-4ee1-6348-477ca77b84e2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 396.8601ms + duration: 403.066578ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 970be4c5-e793-f091-f1ef-24d1905bc16b + - f5c0a8a4-fbb8-f546-ff26-6490dc2559c8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -682,18 +682,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:43 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -707,12 +707,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1ed3ea28-e90b-4de2-625b-816cfa9c0ec3 + - 8be8e992-94c3-4148-5793-c180a71b307f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 460.3044ms + duration: 210.372767ms - id: 11 request: proto: HTTP/1.1 @@ -731,11 +731,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6f10d7a8-1392-e537-bf80-f98d65901325 + - e7b2b1fc-a420-53f1-4146-7c8e19a44cc0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -759,7 +759,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:36:43 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Location: @@ -783,12 +783,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 806871cd-b60e-4797-526d-b6e3594f3bbb + - 4270639f-7dcc-407b-6c53-0cd79f55aecc X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.3816ms + duration: 292.932499ms - id: 12 request: proto: "" @@ -809,11 +809,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?unassign User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6f10d7a8-1392-e537-bf80-f98d65901325 + - e7b2b1fc-a420-53f1-4146-7c8e19a44cc0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -832,14 +832,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":8,"active":true,"roleCollections":[]}' + body: '{"id":"0ae20b4c-b46a-4ee7-9e3f-42c0e9a78534","username":"jenny.doe@test.com","email":"jenny.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"sap.default","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":20,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:43 GMT + - Tue, 01 Aug 2023 07:33:51 GMT Expires: - "0" Pragma: @@ -861,9 +861,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eeb6fe2e-1ad1-487c-4df6-1de109b25225 + - ccfb47f3-3233-4770-7916-de2591643a82 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 213.3641ms + duration: 164.513064ms diff --git a/internal/provider/fixtures/resource_subaccount_role_collection_assignment_with_origin.yaml b/internal/provider/fixtures/resource_subaccount_role_collection_assignment_with_origin.yaml index 3ab92e48..089c5106 100644 --- a/internal/provider/fixtures/resource_subaccount_role_collection_assignment_with_origin.yaml +++ b/internal/provider/fixtures/resource_subaccount_role_collection_assignment_with_origin.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 85d127a7-a783-b60e-23b9-68341ea4b612 + - 47191008-6b46-7201-7368-c8fd77f05402 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:34 GMT + - Tue, 01 Aug 2023 07:33:42 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fce69751-9fe9-4d54-4d32-6a9e484c537a + - d7509e6b-4052-4c46-49ae-8a020e03ce08 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 411.2541ms + duration: 216.795194ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b3009fde-7abc-f10a-ed8f-0e4a3dd042b8 + - 6b6a528e-abd3-40da-07cb-f006ab31e844 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:35 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eff0fb55-61fe-43ee-7e98-fcbec1fb7f68 + - d9a1f370-d3d2-4d1d-779d-dd1115febc53 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 379.9925ms + duration: 214.218174ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 316421b7-9101-02ef-4b96-d025ecfde409 + - f072e363-0e35-3766-9aca-fd6a6a1b4e6d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:35 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 555e2a66-3149-4774-526d-08ee425459c8 + - b4474813-960f-44e1-73c4-b28a6d5d0bd3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.1789ms + duration: 258.191992ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a07e7330-792d-09c2-8be1-b6c84606b3ee + - 74803664-3278-0b9f-71b7-7b9239ec5ec7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:36:35 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 63ff22c7-b8f6-4b13-67ba-1c93a49d3158 + - 8daa548f-daf8-47dd-7f50-375cbd7cf30a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 179.1823ms + duration: 153.875008ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?assign User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a07e7330-792d-09c2-8be1-b6c84606b3ee + - 74803664-3278-0b9f-71b7-7b9239ec5ec7 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"20c3ec19-a43d-439d-a9ce-d02cf611f64c","username":"john.doe@test.com","email":"john.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":3,"active":true,"roleCollections":["Destination Administrator"]}' + body: '{"id":"ba2facdd-15d0-4473-8ebb-61608e1afef8","username":"john.doe@test.com","email":"john.doe@test.com","origin":"terraformint-platform","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":1,"active":true,"roleCollections":["Destination Administrator"]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:36 GMT + - Tue, 01 Aug 2023 07:33:43 GMT Expires: - "0" Pragma: @@ -335,33 +335,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6f4ef72b-0d53-4776-50cd-40be85ddbfc5 + - 9c95e55b-b455-4bcb-7023-9bb92826fff9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 251.7452ms + duration: 210.034629ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0c93a5f1-0eb9-da59-f1da-c547a83dac4f + - 437404dc-a8fb-bdd7-5000-3732b54a4c63 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -372,18 +372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:36 GMT + - Tue, 01 Aug 2023 07:33:44 GMT Expires: - "0" Pragma: @@ -397,33 +397,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9c62196d-bf5a-4fa0-6ed8-878425cebcd4 + - c8564d59-6e1a-429b-7a7a-08ecd2986b7e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 351.6517ms + duration: 244.561172ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 092af08f-40c2-af6f-a386-f0832c4cacaf + - 5dcb269c-8350-a517-b752-7f44004653b6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -434,18 +434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:37 GMT + - Tue, 01 Aug 2023 07:33:44 GMT Expires: - "0" Pragma: @@ -459,33 +459,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a27bbdd9-19db-4a70-5287-8fd9b801bb1c + - d6245d1e-95c5-4023-548a-7f264d17f252 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 386.1219ms + duration: 347.770496ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 59d5685d-c283-4eac-778d-9cdfb3ec6f2e + - 54ec5422-b1e7-c694-b3ac-01970f89f8ed X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -496,18 +496,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:37 GMT + - Tue, 01 Aug 2023 07:33:45 GMT Expires: - "0" Pragma: @@ -521,33 +521,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 938ad503-7549-44c4-5810-0e76ec2f28ff + - f3f090af-47d7-4e25-60b6-844687739017 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 395.8845ms + duration: 260.522387ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ef7c06a-be27-dc28-87ef-7f75d23f61d2 + - 92226635-7d8f-0503-22d3-c1513d868adb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -558,18 +558,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:38 GMT + - Tue, 01 Aug 2023 07:33:45 GMT Expires: - "0" Pragma: @@ -583,33 +583,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f626c46f-6535-4b69-7af3-6fff4186f8c9 + - ab8b8256-4768-45d8-6410-d1f46a08e8ab X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 353.4362ms + duration: 288.029356ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f3c9fc94-fab6-ec1e-4170-7ba01cdbaa8b + - f4a05309-0146-d95c-9f92-68bc51340f47 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -620,18 +620,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:38 GMT + - Tue, 01 Aug 2023 07:33:45 GMT Expires: - "0" Pragma: @@ -645,12 +645,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7449ec0a-1829-4736-62ac-51c4804d05e8 + - 681292a4-fe97-4850-643d-c5e7d0f8b01a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.8338ms + duration: 184.298219ms - id: 10 request: proto: HTTP/1.1 @@ -669,11 +669,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28635985-31df-d3b1-77fe-541599552b93 + - b2a86046-0eaf-96b7-5605-19f1dca42e52 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -697,7 +697,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 20 Jul 2023 06:36:38 GMT + - Tue, 01 Aug 2023 07:33:46 GMT Expires: - "0" Location: @@ -721,12 +721,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0ab3e9a3-3287-424e-62ca-ece5a12daa84 + - a82d987f-90e2-4fda-52f7-f771bd134e5e X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 201.3505ms + duration: 207.590512ms - id: 11 request: proto: "" @@ -747,11 +747,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?unassign User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 28635985-31df-d3b1-77fe-541599552b93 + - b2a86046-0eaf-96b7-5605-19f1dca42e52 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -770,14 +770,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"20c3ec19-a43d-439d-a9ce-d02cf611f64c","username":"john.doe@test.com","email":"john.doe@test.com","givenName":"unknown","familyName":"unknown","origin":"terraformint-platform","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":4,"active":true,"roleCollections":[]}' + body: '{"id":"ba2facdd-15d0-4473-8ebb-61608e1afef8","username":"john.doe@test.com","email":"john.doe@test.com","origin":"terraformint-platform","zoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf","verified":false,"legacyVerificationBehavior":false,"passwordChangeRequired":false,"version":2,"active":true,"roleCollections":[]}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Thu, 20 Jul 2023 06:36:38 GMT + - Tue, 01 Aug 2023 07:33:46 GMT Expires: - "0" Pragma: @@ -799,9 +799,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 10d5abda-b12f-4aed-773a-8cea3fccddf3 + - 399813c1-dcf7-4a05-4ff0-04524c509f20 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 198.6489ms + duration: 222.094405ms diff --git a/internal/provider/fixtures/resource_subaccount_service_binding.yaml b/internal/provider/fixtures/resource_subaccount_service_binding.yaml index 44915d24..449cc074 100644 --- a/internal/provider/fixtures/resource_subaccount_service_binding.yaml +++ b/internal/provider/fixtures/resource_subaccount_service_binding.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c63175eb-68cd-8bdc-2510-e6cbf3e5c323 + - ee40fef3-2387-2fb3-f8de-a3c7280e498f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:17 GMT + - Tue, 01 Aug 2023 07:31:33 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fed6bf8f-00f6-465d-63a7-a2642026eabf + - 8224d1b5-52de-4507-6e28-76a316376492 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 736.9851ms + duration: 200.97941ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f0ae4a93-012e-8ae9-b085-1632ad822335 + - dfca8de8-6b5e-9ace-ac28-6833065a3edb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:18 GMT + - Tue, 01 Aug 2023 07:31:33 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2e38c68f-b735-452c-560d-8c30cfbd6091 + - 28563167-b116-47cf-7288-c466fc982446 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 448.8978ms + duration: 198.847612ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0ff60892-fdda-13af-9a3a-6d6633377986 + - 53d9925e-e569-8bd2-dcee-e7b4bde388bb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:18 GMT + - Tue, 01 Aug 2023 07:31:34 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4c31fd61-27f6-47a4-432b-1f60b1b13c70 + - ae5f5ddb-a091-4359-5b8e-50a54f9dd47f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 385.1402ms + duration: 419.942578ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 56cd3fb9-38ac-7b6b-2989-1afffdc7b493 + - a3eb8865-c623-23ba-ed5d-7bf1903b1ff1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:27:25 GMT + - Tue, 01 Aug 2023 07:31:34 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c588f919-117a-426e-52d3-4870aa9cded2 + - b0f0a4b4-7525-40aa-6938-a6f2bf951968 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 407.4297ms + duration: 186.172214ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 56cd3fb9-38ac-7b6b-2989-1afffdc7b493 + - a3eb8865-c623-23ba-ed5d-7bf1903b1ff1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","ready":true,"last_operation":{"id":"bece892c-d99d-449a-8e65-f6258c376103","ready":true,"type":"create","state":"succeeded","resource_id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"56cd3fb9-38ac-7b6b-2989-1afffdc7b493","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T07:27:25.946013Z","updated_at":"2023-07-25T07:27:26.46957Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T07:27:25.946009Z","updated_at":"2023-07-25T07:27:26.464614662Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' + body: '{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","ready":true,"last_operation":{"id":"810e0278-37e5-47c7-bc4f-5570a9846f7a","ready":true,"type":"create","state":"succeeded","resource_id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"a3eb8865-c623-23ba-ed5d-7bf1903b1ff1","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:34.910392Z","updated_at":"2023-08-01T07:31:35.538561Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:34.910389Z","updated_at":"2023-08-01T07:31:35.534627852Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:26 GMT + - Tue, 01 Aug 2023 07:31:35 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6c541e87-13ec-4cab-72fa-dd65b374cd24 + - a454e697-c7f2-477a-6854-b1ed8d107f69 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 915.5461ms + duration: 818.494413ms - id: 5 request: proto: HTTP/1.1 @@ -353,17 +353,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93417fc1-48c7-9965-77dd-89d7c629d3af + - c3466061-ce5b-4d44-c446-259f8099785f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:27:31 GMT + - Tue, 01 Aug 2023 07:31:40 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2d5201d3-a1af-4cf8-6fb5-0770d4132b35 + - a215b23a-5970-4199-4ec7-4b9acb5d7534 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 267.6971ms + duration: 198.334069ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 93417fc1-48c7-9965-77dd-89d7c629d3af + - c3466061-ce5b-4d44-c446-259f8099785f X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","ready":true,"last_operation":{"id":"bece892c-d99d-449a-8e65-f6258c376103","ready":true,"type":"create","state":"succeeded","resource_id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"56cd3fb9-38ac-7b6b-2989-1afffdc7b493","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T07:27:25.946013Z","updated_at":"2023-07-25T07:27:26.46957Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T07:27:25.946009Z","updated_at":"2023-07-25T07:27:26.464615Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","ready":true,"last_operation":{"id":"810e0278-37e5-47c7-bc4f-5570a9846f7a","ready":true,"type":"create","state":"succeeded","resource_id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"a3eb8865-c623-23ba-ed5d-7bf1903b1ff1","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:34.910392Z","updated_at":"2023-08-01T07:31:35.538561Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:34.910389Z","updated_at":"2023-08-01T07:31:35.534628Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:31 GMT + - Tue, 01 Aug 2023 07:31:40 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1cbaf651-4192-44c8-76fc-a5a848a52628 + - 7c3a74cd-f005-482a-62b4-c40bd66e2d29 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 177.8969ms + duration: 207.868832ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5be28647-6686-5d3c-eef7-7784998f6548 + - 77368ac5-e111-6c0f-8afd-30660dcef26c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:32 GMT + - Tue, 01 Aug 2023 07:31:41 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4d384887-1a7b-48b5-5eab-eaaceaaf57e7 + - 100af16c-27b4-4271-4795-72f9bc04e466 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 433.0584ms + duration: 286.101693ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f1a7335b-1e22-6de8-3a14-8f96f0db8835 + - 3bd6381d-8595-eb97-d1f0-3aa36875c00a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:33 GMT + - Tue, 01 Aug 2023 07:31:41 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 65a47a89-1991-47a4-7e1f-5ed4a8cf5da0 + - fcfdb913-2a40-4a4e-7732-fff6eb26a8e8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 441.9059ms + duration: 184.119375ms - id: 9 request: proto: HTTP/1.1 @@ -631,17 +631,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7f878adb-50dd-a24a-0523-b3680214433b + - 98753f60-df9a-fff8-e089-c3b1892d4e46 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:27:33 GMT + - Tue, 01 Aug 2023 07:31:42 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 189a9fd8-247f-48ac-67d0-f4978590bab1 + - d2670c0f-1722-470d-550f-6f72572f61b8 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 187.2599ms + duration: 296.121215ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7f878adb-50dd-a24a-0523-b3680214433b + - 98753f60-df9a-fff8-e089-c3b1892d4e46 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","ready":true,"last_operation":{"id":"bece892c-d99d-449a-8e65-f6258c376103","ready":true,"type":"create","state":"succeeded","resource_id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"56cd3fb9-38ac-7b6b-2989-1afffdc7b493","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T07:27:25.946013Z","updated_at":"2023-07-25T07:27:26.46957Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T07:27:25.946009Z","updated_at":"2023-07-25T07:27:26.464615Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","ready":true,"last_operation":{"id":"810e0278-37e5-47c7-bc4f-5570a9846f7a","ready":true,"type":"create","state":"succeeded","resource_id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"a3eb8865-c623-23ba-ed5d-7bf1903b1ff1","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:34.910392Z","updated_at":"2023-08-01T07:31:35.538561Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:34.910389Z","updated_at":"2023-08-01T07:31:35.534628Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:33 GMT + - Tue, 01 Aug 2023 07:31:42 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - af011cbc-f17f-4fcb-7533-71380b0ec39e + - afc86d6b-61d0-4164-553d-63e6fca95ea8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 213.6842ms + duration: 155.359263ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 480d3425-e6f8-0748-63e7-597971b23904 + - 59478a7c-e049-08a7-65e8-556c5a6fbe09 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:33 GMT + - Tue, 01 Aug 2023 07:31:42 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ea662e0b-37c5-4341-4ffc-2ec2ef7a92f0 + - 364853ee-a5de-4f08-4e89-0a8fbe2896ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 442.5449ms + duration: 258.195139ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 01582322-07c5-1fbc-ddf0-877c007d3f33 + - 78cb3318-ce05-889c-6aeb-4f266cd1ac3d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:34 GMT + - Tue, 01 Aug 2023 07:31:43 GMT Expires: - "0" Pragma: @@ -891,12 +891,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c9d78bc4-e037-4f42-7e9c-18e529eecc59 + - 9d498bbf-6f30-4260-74b8-d115038264a0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 424.1091ms + duration: 269.1308ms - id: 13 request: proto: HTTP/1.1 @@ -909,17 +909,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9db39511-dfda-5de7-aea2-a13c3b29ff27 + - 30372d71-af19-712e-eb6c-2a261b5ea72a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -943,7 +943,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:27:34 GMT + - Tue, 01 Aug 2023 07:31:43 GMT Expires: - "0" Location: @@ -967,12 +967,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 41b357c8-7aa1-4290-41af-8066277b2373 + - 755c5617-d615-4c5b-455e-044164ea0276 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 167.7083ms + duration: 209.006368ms - id: 14 request: proto: "" @@ -985,7 +985,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -993,11 +993,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9db39511-dfda-5de7-aea2-a13c3b29ff27 + - 30372d71-af19-712e-eb6c-2a261b5ea72a X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1016,14 +1016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","ready":true,"last_operation":{"id":"bece892c-d99d-449a-8e65-f6258c376103","ready":true,"type":"create","state":"succeeded","resource_id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"56cd3fb9-38ac-7b6b-2989-1afffdc7b493","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T07:27:25.946013Z","updated_at":"2023-07-25T07:27:26.46957Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T07:27:25.946009Z","updated_at":"2023-07-25T07:27:26.464615Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","ready":true,"last_operation":{"id":"810e0278-37e5-47c7-bc4f-5570a9846f7a","ready":true,"type":"create","state":"succeeded","resource_id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"a3eb8865-c623-23ba-ed5d-7bf1903b1ff1","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:34.910392Z","updated_at":"2023-08-01T07:31:35.538561Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:34.910389Z","updated_at":"2023-08-01T07:31:35.534628Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:34 GMT + - Tue, 01 Aug 2023 07:31:43 GMT Expires: - "0" Pragma: @@ -1045,33 +1045,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 47d539ae-d90a-443e-78aa-f600d82a8b22 + - d1e6389e-ea3a-466a-7960-63af816a8298 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 245.0609ms + duration: 188.558216ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fb8d6ef6-582f-77f4-e0c6-cc9e00ca16d4 + - 050dc1c2-1738-e372-1e6c-2bd296dfbf41 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1082,18 +1082,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:35 GMT + - Tue, 01 Aug 2023 07:31:44 GMT Expires: - "0" Pragma: @@ -1107,33 +1107,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2c44bce0-12f0-4ff4-41d0-bcef1c1e5788 + - ab6a38b5-f24c-4ce8-7d82-b11548872c5c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.7922ms + duration: 278.146199ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2d54687b-24e7-0bf0-2759-5379bf53c8ae + - e2f86ef9-4677-fc5c-ce32-dc01cd335fe2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1144,18 +1144,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:35 GMT + - Tue, 01 Aug 2023 07:31:44 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f68b11ef-4197-4b68-5158-c83fad8dd233 + - ff18c6dc-22dd-4cc7-64fd-d2010f2720e3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 407.3799ms + duration: 288.080235ms - id: 17 request: proto: HTTP/1.1 @@ -1187,17 +1187,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 845b3b48-fb14-f43f-b55d-5be504cb4f2d + - 760fbe56-3cd8-3958-46e9-5b064457fac6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:27:37 GMT + - Tue, 01 Aug 2023 07:31:44 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2fe9b3ee-681b-410d-7019-861dc4fed8ba + - c324f8dc-e342-402c-738c-9c265cdd2f83 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 1.7788023s + duration: 154.324456ms - id: 18 request: proto: "" @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 845b3b48-fb14-f43f-b55d-5be504cb4f2d + - 760fbe56-3cd8-3958-46e9-5b064457fac6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1301,7 +1301,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:38 GMT + - Tue, 01 Aug 2023 07:31:45 GMT Expires: - "0" Pragma: @@ -1323,12 +1323,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9681dfb7-79f3-43b0-6a4a-80219f4b0934 + - 65a5bc08-a5ea-4ec7-5c10-5338f2ff6070 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 516.7638ms + duration: 539.948821ms - id: 19 request: proto: HTTP/1.1 @@ -1341,17 +1341,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0b70cbb0-c076-18c4-9e22-6acbd0a4c058 + - f22e774e-d26e-566d-e427-1fb8f02cb011 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1375,7 +1375,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:27:57 GMT + - Tue, 01 Aug 2023 07:31:50 GMT Expires: - "0" Location: @@ -1399,12 +1399,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b213891b-889c-4223-4927-22fa43b83fa1 + - 2be4e91d-1352-4ca2-7549-aff9f2c7c409 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 197.3094ms + duration: 231.931882ms - id: 20 request: proto: "" @@ -1417,7 +1417,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"b9d44630-a7f9-4e97-a5b1-172f7b0e2cf4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"f1ad0458-c2f3-460d-9f38-7c23f9911fa4","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1425,11 +1425,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0b70cbb0-c076-18c4-9e22-6acbd0a4c058 + - f22e774e-d26e-566d-e427-1fb8f02cb011 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1456,7 +1456,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:27:57 GMT + - Tue, 01 Aug 2023 07:31:50 GMT Expires: - "0" Pragma: @@ -1478,9 +1478,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - df924898-3d63-4c4a-688a-4ad3bdb1cd12 + - 03ea9137-6cb2-4987-4554-36fe98190b6b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 159.2654ms + duration: 119.896332ms diff --git a/internal/provider/fixtures/resource_subaccount_service_binding_import_error.yaml b/internal/provider/fixtures/resource_subaccount_service_binding_import_error.yaml index e1e63482..cb91ab22 100644 --- a/internal/provider/fixtures/resource_subaccount_service_binding_import_error.yaml +++ b/internal/provider/fixtures/resource_subaccount_service_binding_import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1eedbeb3-3935-a0c8-bf1e-47f151af35de + - 529f4c9a-e8a7-dcf6-e82d-6d647d0398d1 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:26 GMT + - Tue, 01 Aug 2023 07:31:51 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c4a2565f-af9d-47bf-62ea-830c5099a294 + - f824ce07-87e4-4276-5841-5a41594f1ece X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 682.7662ms + duration: 226.489296ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 04f72b31-2a32-d18b-13cd-022de50f5cd1 + - 06849da2-e86b-9fed-d566-17816bfa3211 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:26 GMT + - Tue, 01 Aug 2023 07:31:52 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eb282324-094f-4b90-4c9d-90c5db33f2f9 + - 2ae7be12-fe1a-45b6-576f-f7ac81ed66bb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.4549ms + duration: 233.995609ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 38992075-d4f4-8475-f085-15d9ecac0d00 + - 085b68c4-0308-468b-a668-78f015edd90a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:27 GMT + - Tue, 01 Aug 2023 07:31:52 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 53466b5a-d020-4415-6f73-db5c21cd07ae + - a43879b4-9ab2-44a7-61fd-4150e7db192e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 369.5985ms + duration: 265.868873ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7858ba1e-5bd2-3ac9-b344-671990feddef + - 0942b6a7-ee0d-4454-04b7-08e5424ce92b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 06:47:27 GMT + - Tue, 01 Aug 2023 07:31:52 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - deed39e1-c997-4f40-41e5-51f4fede8a85 + - 67012355-764b-4693-74da-1a7f9eb44b12 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 218.2979ms + duration: 160.145133ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7858ba1e-5bd2-3ac9-b344-671990feddef + - 0942b6a7-ee0d-4454-04b7-08e5424ce92b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","ready":true,"last_operation":{"id":"4a05daeb-4b11-4423-b24e-45e7b6133c81","ready":true,"type":"create","state":"succeeded","resource_id":"cf74903c-803a-47e4-89cf-58518fe8a25c","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"7858ba1e-5bd2-3ac9-b344-671990feddef","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T06:47:27.861231Z","updated_at":"2023-07-25T06:47:28.456742Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T06:47:27.861228Z","updated_at":"2023-07-25T06:47:28.452137389Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' + body: '{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","ready":true,"last_operation":{"id":"24699afc-898b-474e-9861-be93dd7ab989","ready":true,"type":"create","state":"succeeded","resource_id":"e518e81a-78a7-41be-87eb-e4ad937a9123","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"0942b6a7-ee0d-4454-04b7-08e5424ce92b","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:52.955326Z","updated_at":"2023-08-01T07:31:53.455993Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:52.955323Z","updated_at":"2023-08-01T07:31:53.45214899Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:28 GMT + - Tue, 01 Aug 2023 07:31:53 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b2582200-4eaf-4f9c-5acc-629aff90eaa1 + - b181367c-d993-4891-4fe7-6268ab1308f8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 947.7988ms + duration: 726.04719ms - id: 5 request: proto: HTTP/1.1 @@ -353,17 +353,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bac820cf-958e-b4bc-1128-e0ad803e9832 + - a1a5bc96-94a5-dd8f-6834-e94429d451a5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 06:47:33 GMT + - Tue, 01 Aug 2023 07:31:58 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8e30a2e1-29d5-4f18-644b-b6c67195564a + - d06fdcdd-757e-45d6-63f2-0d6be71e36f5 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 253.221ms + duration: 204.943866ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bac820cf-958e-b4bc-1128-e0ad803e9832 + - a1a5bc96-94a5-dd8f-6834-e94429d451a5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","ready":true,"last_operation":{"id":"4a05daeb-4b11-4423-b24e-45e7b6133c81","ready":true,"type":"create","state":"succeeded","resource_id":"cf74903c-803a-47e4-89cf-58518fe8a25c","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"7858ba1e-5bd2-3ac9-b344-671990feddef","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T06:47:27.861231Z","updated_at":"2023-07-25T06:47:28.456742Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T06:47:27.861228Z","updated_at":"2023-07-25T06:47:28.452137Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","ready":true,"last_operation":{"id":"24699afc-898b-474e-9861-be93dd7ab989","ready":true,"type":"create","state":"succeeded","resource_id":"e518e81a-78a7-41be-87eb-e4ad937a9123","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"0942b6a7-ee0d-4454-04b7-08e5424ce92b","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:52.955326Z","updated_at":"2023-08-01T07:31:53.455993Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:52.955323Z","updated_at":"2023-08-01T07:31:53.452149Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:33 GMT + - Tue, 01 Aug 2023 07:31:58 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 785d2d9c-e727-4fc9-53c7-717c374e6d92 + - cabbe7ad-471d-4c0b-6bcc-7434c70ca8c5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 104.9215ms + duration: 177.668054ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 001aca5f-d74d-b7a5-da1a-c2d017126496 + - f2795e1b-1a22-1906-b0cc-37ed9ea1293e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:34 GMT + - Tue, 01 Aug 2023 07:31:59 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6c1a40a8-aee4-4cfb-7a10-915f65524a58 + - be35eaa8-a180-47d1-5493-79c211661f17 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 435.731ms + duration: 217.477909ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cd6d8cab-f934-941b-9557-24f6a4bfce3f + - 153129a0-5a45-0bcd-1d65-91aa30465f94 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:34 GMT + - Tue, 01 Aug 2023 07:31:59 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a19a7466-c808-4b6f-4081-28549323e960 + - 0c0af57e-0d02-47a4-5874-7642a26c0794 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 375.4078ms + duration: 296.790782ms - id: 9 request: proto: HTTP/1.1 @@ -631,17 +631,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c968331d-1d63-3961-3108-4c350fee9dbe + - 732c8ccc-f28a-a43d-3304-91278b4e1411 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 06:47:35 GMT + - Tue, 01 Aug 2023 07:31:59 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 200a8dbe-295b-4917-4d33-947197cfa1ca + - 818f44c5-c15c-4247-5fcd-42998534fcbf X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 185.0453ms + duration: 156.104539ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c968331d-1d63-3961-3108-4c350fee9dbe + - 732c8ccc-f28a-a43d-3304-91278b4e1411 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","ready":true,"last_operation":{"id":"4a05daeb-4b11-4423-b24e-45e7b6133c81","ready":true,"type":"create","state":"succeeded","resource_id":"cf74903c-803a-47e4-89cf-58518fe8a25c","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"7858ba1e-5bd2-3ac9-b344-671990feddef","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-25T06:47:27.861231Z","updated_at":"2023-07-25T06:47:28.456742Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-07-25T06:47:27.861228Z","updated_at":"2023-07-25T06:47:28.452137Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","ready":true,"last_operation":{"id":"24699afc-898b-474e-9861-be93dd7ab989","ready":true,"type":"create","state":"succeeded","resource_id":"e518e81a-78a7-41be-87eb-e4ad937a9123","resource_type":"/v1/service_bindings","platform_id":"service-manager","correlation_id":"0942b6a7-ee0d-4454-04b7-08e5424ce92b","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T07:31:52.955326Z","updated_at":"2023-08-01T07:31:53.455993Z"},"name":"tfint-test-alert-sb","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","context":{"crm_customer_id":"","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-testacc-alertnotification-instance","license_type":"SAPDEV","origin":"sapcp","platform":"sapcp","region":"cf-eu12","service_instance_id":"df532d07-57a7-415e-a261-23a398ef068a","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"},"credentials":{"client_id":"redacted","client_secret":"redacted","oauth_url":"https://integration-test-services-4ie3yr1a.authentication.eu12.hana.ondemand.com/oauth/token?grant_type=client_credentials","url":"https://clm-sl-ans-canary-ans-service-api.cfapps.eu12.hana.ondemand.com"},"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","created_at":"2023-08-01T07:31:52.955323Z","updated_at":"2023-08-01T07:31:53.452149Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:35 GMT + - Tue, 01 Aug 2023 07:31:59 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ef258a8a-3f37-478c-60c3-c34f40304bbc + - 7ce7fcb5-35a7-4b95-6f83-70206270b197 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 265.223ms + duration: 115.811897ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a090c5b-6330-80d1-16a9-1789e5f33102 + - cdb15792-9a8b-e5b5-34a8-e28f09d5bbc9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:35 GMT + - Tue, 01 Aug 2023 07:32:00 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 49e83d56-04a6-4383-507a-a64bf0be72ad + - eaa2d88f-4938-474d-6418-f09191020097 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.3787ms + duration: 582.999783ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7183a4e9-8023-209a-648d-4146bcbf5777 + - bcb5d5a3-074b-28cf-0af8-1ca258960e17 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:36 GMT + - Tue, 01 Aug 2023 07:32:01 GMT Expires: - "0" Pragma: @@ -891,33 +891,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f350d0f2-dac6-414f-73b0-bfd0b45f5d7c + - 779f13da-c1d2-4e39-5ab3-ef7da77a5d16 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 382.8343ms + duration: 211.272022ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5b540706-8ce4-ea32-7cdd-1717edcb6fdf + - 4d804826-0e2c-e193-af7d-08152eee62be X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -928,18 +928,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:36 GMT + - Tue, 01 Aug 2023 07:32:01 GMT Expires: - "0" Pragma: @@ -953,33 +953,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9d8d75ce-f914-4d52-6749-ee758e628daf + - 2eb867d3-e901-4494-5b53-68a6f1890002 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 426.8131ms + duration: 518.185331ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0550f085-19bf-842a-49ff-96719bcfc2a4 + - 9be98c71-9dbd-dd81-4f69-f221dd814b16 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -990,18 +990,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:37 GMT + - Tue, 01 Aug 2023 07:32:02 GMT Expires: - "0" Pragma: @@ -1015,12 +1015,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eee5265f-0eb5-446f-5dab-843d6d61c43e + - 54cb01ca-3c0d-4e2d-41a5-30e4e8f567b1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 398.3677ms + duration: 270.787295ms - id: 15 request: proto: HTTP/1.1 @@ -1033,17 +1033,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1634c5c5-e0df-6e4a-430f-dc9498865f82 + - f676b83d-1b98-be76-71ea-ab0e61115c97 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1067,7 +1067,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 06:47:37 GMT + - Tue, 01 Aug 2023 07:32:02 GMT Expires: - "0" Location: @@ -1091,12 +1091,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 45e9f368-c8af-4278-4ec7-6961444485d3 + - 6dcb9094-0238-4c7b-7413-4b906c2a212a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 165.2776ms + duration: 171.757753ms - id: 16 request: proto: "" @@ -1109,7 +1109,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1117,11 +1117,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1634c5c5-e0df-6e4a-430f-dc9498865f82 + - f676b83d-1b98-be76-71ea-ab0e61115c97 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1147,7 +1147,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:37 GMT + - Tue, 01 Aug 2023 07:32:02 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 96b6d0e0-13b0-4a56-4d55-3bf7e65f7870 + - ac1181c2-df76-49ba-4b75-d7ef76de180c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 492.7509ms + duration: 485.40871ms - id: 17 request: proto: HTTP/1.1 @@ -1187,17 +1187,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 55cebbcd-113d-b8a2-1621-d1e347f75c61 + - f5a66058-1132-4d11-77b9-b82221bcf2c5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 06:47:43 GMT + - Tue, 01 Aug 2023 07:32:07 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0945392b-475c-4f3a-4de7-2c4f43d44d62 + - 2eef67a0-9c15-41c5-55a1-e86ec18029eb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 205.9296ms + duration: 186.920795ms - id: 18 request: proto: "" @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"cf74903c-803a-47e4-89cf-58518fe8a25c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"e518e81a-78a7-41be-87eb-e4ad937a9123","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/binding?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 55cebbcd-113d-b8a2-1621-d1e347f75c61 + - f5a66058-1132-4d11-77b9-b82221bcf2c5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1302,7 +1302,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jul 2023 06:47:43 GMT + - Tue, 01 Aug 2023 07:32:08 GMT Expires: - "0" Pragma: @@ -1324,9 +1324,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c5748c7c-8894-46ae-7f45-1a903df6d449 + - 3a2db8e6-e5ed-494c-7622-cfe82b524554 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 116.3273ms + duration: 85.985854ms diff --git a/internal/provider/fixtures/resource_subaccount_service_instance_import_error.yaml b/internal/provider/fixtures/resource_subaccount_service_instance_import_error.yaml index 1d95c735..c3070aaa 100644 --- a/internal/provider/fixtures/resource_subaccount_service_instance_import_error.yaml +++ b/internal/provider/fixtures/resource_subaccount_service_instance_import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a4c6aea2-5e06-5cf7-81f9-24ccd513a9f3 + - bef488c3-c5c6-a3c7-900f-5783038fd45d X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:07 GMT + - Tue, 01 Aug 2023 14:12:38 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8f28dba9-5f77-43ec-61e3-6e9cb0c9755c + - 65bfee78-5ac9-42c2-72c2-cbc87c92ac3b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 889.7429ms + duration: 328.52712ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 8143774f-1796-0b13-9994-7bd8007708c7 + - 94a569ec-d222-198e-1778-0739683d301a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:08 GMT + - Tue, 01 Aug 2023 14:12:39 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e7ad299e-b96a-4a27-7867-d34a5c7b26b7 + - dc8a0a0e-6d73-4c95-5e78-19eefdb7e406 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 436.862ms + duration: 332.970192ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7b87190c-99ee-8cd1-f208-e3c253e4ed51 + - cb4c63d4-cf0f-db48-bcbc-6dfc7271d279 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:08 GMT + - Tue, 01 Aug 2023 14:12:39 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f8bbd945-04ba-4ead-5144-945ba2af5f71 + - e3da780e-ced8-439f-4d19-33acc89d5c8b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 505.5208ms + duration: 251.328344ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6c6caeda-e339-7f2b-9415-2c5faaec7304 + - 94ae7ea2-2ecf-292e-2577-7e5cdc7546ee X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:51:09 GMT + - Tue, 01 Aug 2023 14:12:39 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0ab1be84-65c5-44d5-487e-96d281d288ca + - 2834861a-d6b8-4e2e-57c0-d0e09f715827 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 239.6242ms + duration: 325.12295ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6c6caeda-e339-7f2b-9415-2c5faaec7304 + - 94ae7ea2-2ecf-292e-2577-7e5cdc7546ee X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","ready":true,"last_operation":{"id":"79ff9bf1-2a71-411f-aecb-a34b7b5c7334","ready":true,"type":"create","state":"succeeded","resource_id":"63c0476b-44de-4925-ac20-bbd0438e904b","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"6c6caeda-e339-7f2b-9415-2c5faaec7304","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:51:09.487218Z","updated_at":"2023-07-24T12:51:09.813076Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:51:09.487215Z","updated_at":"2023-07-24T12:51:09.808277781Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' + body: '{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","ready":true,"last_operation":{"id":"088546d6-df43-461c-a1f4-52414863f8ee","ready":true,"type":"create","state":"succeeded","resource_id":"88a077e5-f462-4535-9e33-dfddeae66eb8","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"94ae7ea2-2ecf-292e-2577-7e5cdc7546ee","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:40.032478Z","updated_at":"2023-08-01T14:12:40.321361Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","origin":"sapcp","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:12:40.032476Z","updated_at":"2023-08-01T14:12:40.316400781Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:09 GMT + - Tue, 01 Aug 2023 14:12:40 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1a309af6-c1d8-40a1-40aa-7e54430bcba1 + - 01a347d2-0f8a-4a57-564f-e725043e83c4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 625.111ms + duration: 437.792001ms - id: 5 request: proto: HTTP/1.1 @@ -353,17 +353,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9fbdca2a-201f-510f-9602-673d2c531eac + - 22846cef-7b1b-a7de-67d5-835db8c69154 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:51:15 GMT + - Tue, 01 Aug 2023 14:12:45 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 9190797b-99b9-4a23-4f32-e69cf4cdf29d + - bf31c8c7-7506-4254-4ca3-972a03fb1608 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 194.0631ms + duration: 218.223641ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9fbdca2a-201f-510f-9602-673d2c531eac + - 22846cef-7b1b-a7de-67d5-835db8c69154 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","ready":true,"last_operation":{"id":"79ff9bf1-2a71-411f-aecb-a34b7b5c7334","ready":true,"type":"create","state":"succeeded","resource_id":"63c0476b-44de-4925-ac20-bbd0438e904b","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"6c6caeda-e339-7f2b-9415-2c5faaec7304","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:51:09.487218Z","updated_at":"2023-07-24T12:51:09.813076Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:51:09.487215Z","updated_at":"2023-07-24T12:51:09.808278Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","ready":true,"last_operation":{"id":"088546d6-df43-461c-a1f4-52414863f8ee","ready":true,"type":"create","state":"succeeded","resource_id":"88a077e5-f462-4535-9e33-dfddeae66eb8","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"94ae7ea2-2ecf-292e-2577-7e5cdc7546ee","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:40.032478Z","updated_at":"2023-08-01T14:12:40.321361Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","origin":"sapcp","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:12:40.032476Z","updated_at":"2023-08-01T14:12:40.316401Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:15 GMT + - Tue, 01 Aug 2023 14:12:45 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eda701db-0005-449d-516d-233fbe4a12a3 + - 58b6799c-46df-497e-5b36-f7cdaacdcd86 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 217.1091ms + duration: 99.722508ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ad052b4a-3101-690f-48b0-c788799919b5 + - 4038ef3b-bd4d-718a-c0bc-1c7046ab1588 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:15 GMT + - Tue, 01 Aug 2023 14:12:46 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4e39be55-5165-49ce-6b7d-3b190705e6c0 + - 7faf5d3d-012d-4d62-7ebf-13f923385f9b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 395.2792ms + duration: 291.575405ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 41b50f7e-b0aa-3b98-97f3-2ff064811f8f + - 75bfd21e-f92b-ee72-d7db-152cab8de22f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:16 GMT + - Tue, 01 Aug 2023 14:12:46 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 762d3504-85e7-4a04-500d-97f7c9ebd80c + - 9472cb0a-f225-4b04-5431-9312dbaa1b40 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 362.367ms + duration: 251.179377ms - id: 9 request: proto: HTTP/1.1 @@ -631,17 +631,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e7149d3d-a6a9-d469-208c-e0341bfb6ae2 + - fe22dea4-f49e-a068-78ce-c2167dcdcf7c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:51:16 GMT + - Tue, 01 Aug 2023 14:12:46 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b032262d-bcc2-4288-7058-8a4e58170ddd + - 5ebd3a5c-9e06-4b22-798d-3fa4567ab4d9 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 168.7891ms + duration: 192.420381ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e7149d3d-a6a9-d469-208c-e0341bfb6ae2 + - fe22dea4-f49e-a068-78ce-c2167dcdcf7c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","ready":true,"last_operation":{"id":"79ff9bf1-2a71-411f-aecb-a34b7b5c7334","ready":true,"type":"create","state":"succeeded","resource_id":"63c0476b-44de-4925-ac20-bbd0438e904b","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"6c6caeda-e339-7f2b-9415-2c5faaec7304","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:51:09.487218Z","updated_at":"2023-07-24T12:51:09.813076Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:51:09.487215Z","updated_at":"2023-07-24T12:51:09.808278Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","ready":true,"last_operation":{"id":"088546d6-df43-461c-a1f4-52414863f8ee","ready":true,"type":"create","state":"succeeded","resource_id":"88a077e5-f462-4535-9e33-dfddeae66eb8","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"94ae7ea2-2ecf-292e-2577-7e5cdc7546ee","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:40.032478Z","updated_at":"2023-08-01T14:12:40.321361Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","origin":"sapcp","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:12:40.032476Z","updated_at":"2023-08-01T14:12:40.316401Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:16 GMT + - Tue, 01 Aug 2023 14:12:46 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cd27083a-a96f-4965-7769-351254147065 + - 2590b36d-d563-42e0-6681-dd180c7219ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 137.5091ms + duration: 108.093535ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0233dd6c-4a74-2205-c200-cf2ed9adc7f8 + - d08f3e41-fde6-35db-cdb8-0c75849241a2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:17 GMT + - Tue, 01 Aug 2023 14:12:47 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ff758243-8f58-42c8-6f17-a0410844b116 + - 6daa140f-0b6a-4ea0-65ef-ebbd2cdd92f9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 469.7596ms + duration: 250.90819ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d2b16c84-f218-159a-3310-e39607051e58 + - 3d3248c0-381a-2899-bc83-be77e68459a8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:17 GMT + - Tue, 01 Aug 2023 14:12:47 GMT Expires: - "0" Pragma: @@ -891,33 +891,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - edabccb9-65b7-4029-49c2-8448880b80ac + - 45cd212c-1b45-41c7-4a33-aa39208e5e47 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 459.8668ms + duration: 240.466149ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9c94cdfd-2050-f5f8-5368-24e845dd2841 + - be49cbf1-1a3b-1ac9-a5d1-29330aee5533 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -928,18 +928,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:18 GMT + - Tue, 01 Aug 2023 14:12:48 GMT Expires: - "0" Pragma: @@ -953,33 +953,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 711db186-5ad9-4757-4ba6-388456841ecc + - e8c9be2b-8c0e-4452-530c-d7c63149ccef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.1625ms + duration: 304.797698ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9438b85c-275d-66f6-b0c0-365257b18721 + - 2269397e-edb4-091a-444f-f891c692f9a4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -990,18 +990,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:18 GMT + - Tue, 01 Aug 2023 14:12:48 GMT Expires: - "0" Pragma: @@ -1015,12 +1015,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 509c98f8-a323-4228-6637-5583c292c100 + - 83ec611f-2c0c-41cf-6410-14cdb3ea076a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 416.4863ms + duration: 350.036283ms - id: 15 request: proto: HTTP/1.1 @@ -1033,17 +1033,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","id":"63c0476b-44de-4925-ac20-bbd0438e904b","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"confirm":"true","id":"88a077e5-f462-4535-9e33-dfddeae66eb8","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 54d14bf0-e89d-a3c5-14d1-90215646c6ea + - 735775ce-0a25-7d7b-2c2b-20391cd23af1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1067,7 +1067,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:51:18 GMT + - Tue, 01 Aug 2023 14:12:48 GMT Expires: - "0" Location: @@ -1091,12 +1091,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 22880055-5dd5-42fb-61d2-fe646d6ae06d + - 1203aedc-b228-40d7-6116-be722f830d0a X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 200.1161ms + duration: 204.640211ms - id: 16 request: proto: "" @@ -1109,7 +1109,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","id":"63c0476b-44de-4925-ac20-bbd0438e904b","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"confirm":"true","id":"88a077e5-f462-4535-9e33-dfddeae66eb8","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1117,11 +1117,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 54d14bf0-e89d-a3c5-14d1-90215646c6ea + - 735775ce-0a25-7d7b-2c2b-20391cd23af1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1147,7 +1147,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:19 GMT + - Tue, 01 Aug 2023 14:12:49 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9e641779-61c8-415a-78a8-c0569eee268a + - 1914fb9a-dacf-492d-474e-8eaea14f4b23 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 310.059ms + duration: 318.530567ms - id: 17 request: proto: HTTP/1.1 @@ -1187,17 +1187,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31b5e98e-8ebc-faa8-2d38-568a24585082 + - b5ed6b94-9604-390f-aa4b-6ed932984f1e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:51:24 GMT + - Tue, 01 Aug 2023 14:12:54 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - faf61506-6723-4f98-74c6-917c92c38f9d + - 2aa7c7a8-e33c-4df5-48d7-63a96bc01824 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 269.5362ms + duration: 210.934363ms - id: 18 request: proto: "" @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"63c0476b-44de-4925-ac20-bbd0438e904b","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"88a077e5-f462-4535-9e33-dfddeae66eb8","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 31b5e98e-8ebc-faa8-2d38-568a24585082 + - b5ed6b94-9604-390f-aa4b-6ed932984f1e X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1302,7 +1302,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:51:24 GMT + - Tue, 01 Aug 2023 14:12:54 GMT Expires: - "0" Pragma: @@ -1324,9 +1324,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e9438f8f-834c-427c-458d-a9ad750839b6 + - 92021c36-5877-4b24-642b-9306a228494f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 115.4941ms + duration: 97.018965ms diff --git a/internal/provider/fixtures/resource_subaccount_service_instance_with_parameters.yaml b/internal/provider/fixtures/resource_subaccount_service_instance_with_parameters.yaml index e635e877..784bffd2 100644 --- a/internal/provider/fixtures/resource_subaccount_service_instance_with_parameters.yaml +++ b/internal/provider/fixtures/resource_subaccount_service_instance_with_parameters.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - da50079e-6f67-2ead-93f7-63863102874f + - f3933fa4-1992-4d95-a42b-16593a099aa2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:20 GMT + - Tue, 01 Aug 2023 14:13:33 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 16033709-eaa7-4e7a-6df0-4a2273fe54c5 + - 68d75d6e-033a-4a55-753b-ae754f575bba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 788.3949ms + duration: 593.862721ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - af2e6c8b-5865-1e30-b836-4c7d65bcca53 + - 58d12c84-9290-6071-a63b-20a40f3ac65e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:21 GMT + - Tue, 01 Aug 2023 14:13:33 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ecad9d2c-50df-42f9-5b22-17f688cae255 + - 983bdda9-8f02-4ea8-5cdd-c40ebf7d4351 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 619.9856ms + duration: 311.260874ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 132f5e0b-346d-1f01-552a-68ed9ce7e379 + - 4c6e5378-bcd0-8d72-8a95-cfd870e96087 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:21 GMT + - Tue, 01 Aug 2023 14:13:34 GMT Expires: - "0" Pragma: @@ -181,35 +181,35 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f457daf5-f3e4-467b-5697-cc74924995fa + - 74c34cdb-276e-458d-41a9-06e143bac12d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 535.2513ms + duration: 313.515639ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 495 + content_length: 496 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"paramValues":{"name":"tf-test-destintion","parameters":"{\"HTML5Runtime_enable\":\"true\",\"init_data\":{\"subaccount\":{\"existing_destinations_policy\":\"fail\",\"destinations\":[{\"Name\":\"Task_Center_global_settings\",\"Type\":\"HTTP\",\"URL\":\"http://sap.com\",\"Authentication\":\"NoAuthentication\",\"ProxyType\":\"Internet\",\"Description\":\"SAP Task Center Global Settings\"}]}}}","plan":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"name":"tf-test-destination","parameters":"{\"HTML5Runtime_enable\":\"true\",\"init_data\":{\"subaccount\":{\"existing_destinations_policy\":\"fail\",\"destinations\":[{\"Name\":\"Task_Center_global_settings\",\"Type\":\"HTTP\",\"URL\":\"http://sap.com\",\"Authentication\":\"NoAuthentication\",\"ProxyType\":\"Internet\",\"Description\":\"SAP Task Center Global Settings\"}]}}}","plan":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a49a94af-06ac-e691-5455-a7da2bf12a38 + - 742caaeb-cc5e-eda7-c644-d5a1525d006d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 13:02:22 GMT + - Tue, 01 Aug 2023 14:13:34 GMT Expires: - "0" Location: @@ -257,25 +257,25 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - eb4125c3-5a4b-4592-7382-9c5d226d0a98 + - fee50fe4-e56b-4e91-530a-13075267a8e2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 263.8921ms + duration: 367.113778ms - id: 4 request: proto: "" proto_major: 0 proto_minor: 0 - content_length: 495 + content_length: 496 transfer_encoding: [] trailer: {} host: "" remote_addr: "" request_uri: "" body: | - {"paramValues":{"name":"tf-test-destintion","parameters":"{\"HTML5Runtime_enable\":\"true\",\"init_data\":{\"subaccount\":{\"existing_destinations_policy\":\"fail\",\"destinations\":[{\"Name\":\"Task_Center_global_settings\",\"Type\":\"HTTP\",\"URL\":\"http://sap.com\",\"Authentication\":\"NoAuthentication\",\"ProxyType\":\"Internet\",\"Description\":\"SAP Task Center Global Settings\"}]}}}","plan":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"name":"tf-test-destination","parameters":"{\"HTML5Runtime_enable\":\"true\",\"init_data\":{\"subaccount\":{\"existing_destinations_policy\":\"fail\",\"destinations\":[{\"Name\":\"Task_Center_global_settings\",\"Type\":\"HTTP\",\"URL\":\"http://sap.com\",\"Authentication\":\"NoAuthentication\",\"ProxyType\":\"Internet\",\"Description\":\"SAP Task Center Global Settings\"}]}}}","plan":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a49a94af-06ac-e691-5455-a7da2bf12a38 + - 742caaeb-cc5e-eda7-c644-d5a1525d006d X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","ready":true,"last_operation":{"id":"4e27e554-aad8-49b0-8792-3a24b8f7dead","ready":true,"type":"create","state":"succeeded","resource_id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"a49a94af-06ac-e691-5455-a7da2bf12a38","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T13:02:22.580459Z","updated_at":"2023-07-24T13:02:23.333103Z"},"name":"tf-test-destintion","service_plan_id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","crm_customer_id":"","platform":"sapcp","origin":"sapcp","license_type":"SAPDEV","instance_name":"tf-test-destintion"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T13:02:22.580444Z","updated_at":"2023-07-24T13:02:23.328572939Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' + body: '{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","ready":true,"last_operation":{"id":"131457c3-91a2-4092-a4d2-36f7371709d3","ready":true,"type":"create","state":"succeeded","resource_id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"742caaeb-cc5e-eda7-c644-d5a1525d006d","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:13:35.051548Z","updated_at":"2023-08-01T14:13:35.693155Z"},"name":"tf-test-destination","service_plan_id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","platform_id":"service-manager","context":{"platform":"sapcp","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-test-destination"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:13:35.051545Z","updated_at":"2023-08-01T14:13:35.690383907Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:23 GMT + - Tue, 01 Aug 2023 14:13:35 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a011e815-a1dc-4cc1-5a0b-1579c7950093 + - 44930828-e8dd-457a-6335-9e70fd25b788 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.2032809s + duration: 1.119130586s - id: 5 request: proto: HTTP/1.1 @@ -353,17 +353,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 24ca7cf8-d2bf-11a4-7807-5dcb78607948 + - f6d4fd89-4050-0088-bc3a-7baecc4ffe44 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 13:02:28 GMT + - Tue, 01 Aug 2023 14:13:40 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 70b52ef6-817a-4b03-56cc-2563808902e3 + - 7b919957-ef7e-47ea-4023-c3f236961497 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 270.5302ms + duration: 261.090078ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 24ca7cf8-d2bf-11a4-7807-5dcb78607948 + - f6d4fd89-4050-0088-bc3a-7baecc4ffe44 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","ready":true,"last_operation":{"id":"4e27e554-aad8-49b0-8792-3a24b8f7dead","ready":true,"type":"create","state":"succeeded","resource_id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"a49a94af-06ac-e691-5455-a7da2bf12a38","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T13:02:22.580459Z","updated_at":"2023-07-24T13:02:23.333103Z"},"name":"tf-test-destintion","service_plan_id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","crm_customer_id":"","platform":"sapcp","origin":"sapcp","license_type":"SAPDEV","instance_name":"tf-test-destintion"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T13:02:22.580444Z","updated_at":"2023-07-24T13:02:23.328573Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","ready":true,"last_operation":{"id":"131457c3-91a2-4092-a4d2-36f7371709d3","ready":true,"type":"create","state":"succeeded","resource_id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"742caaeb-cc5e-eda7-c644-d5a1525d006d","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:13:35.051548Z","updated_at":"2023-08-01T14:13:35.693155Z"},"name":"tf-test-destination","service_plan_id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","platform_id":"service-manager","context":{"platform":"sapcp","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-test-destination"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:13:35.051545Z","updated_at":"2023-08-01T14:13:35.690384Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:28 GMT + - Tue, 01 Aug 2023 14:13:41 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6360c896-2042-41d4-7363-9de40e93fbf6 + - 254b3cc2-5622-43e6-57f2-c4a1b00e7c2e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 229.4681ms + duration: 144.565122ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 068d6835-ea2f-f80f-47c2-9185e532e0fa + - 42f74694-0f8c-c0c8-2ec1-149f60a61bed X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:29 GMT + - Tue, 01 Aug 2023 14:13:41 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 70943d34-2d7c-4737-60f1-08b8478c0c35 + - c2584bf6-a017-4ccc-614f-1c8032074bc9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 433.1004ms + duration: 265.880379ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - aa63d6b8-a639-0d90-d160-09f09a9e431a + - e08ece9f-3516-0470-ad9e-e326813b74cc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:29 GMT + - Tue, 01 Aug 2023 14:13:41 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6301b8a4-66df-4df0-45f6-bb602f686346 + - b355e669-cc1c-4139-63b4-3b1492f72fa5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 464.1251ms + duration: 239.406215ms - id: 9 request: proto: HTTP/1.1 @@ -631,17 +631,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 36856b5f-e213-a247-f0a7-f5b75a4ef714 + - 65f4e8c6-b529-3ee7-caf1-d65723ce6fd2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 13:02:30 GMT + - Tue, 01 Aug 2023 14:13:42 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 2fb36a84-9d1e-4dee-5f75-b706613c396e + - ea12fc45-715d-4564-5a8e-a2c9f7ed29cb X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 154.4079ms + duration: 222.123393ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 36856b5f-e213-a247-f0a7-f5b75a4ef714 + - 65f4e8c6-b529-3ee7-caf1-d65723ce6fd2 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","ready":true,"last_operation":{"id":"4e27e554-aad8-49b0-8792-3a24b8f7dead","ready":true,"type":"create","state":"succeeded","resource_id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"a49a94af-06ac-e691-5455-a7da2bf12a38","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T13:02:22.580459Z","updated_at":"2023-07-24T13:02:23.333103Z"},"name":"tf-test-destintion","service_plan_id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","crm_customer_id":"","platform":"sapcp","origin":"sapcp","license_type":"SAPDEV","instance_name":"tf-test-destintion"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T13:02:22.580444Z","updated_at":"2023-07-24T13:02:23.328573Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","ready":true,"last_operation":{"id":"131457c3-91a2-4092-a4d2-36f7371709d3","ready":true,"type":"create","state":"succeeded","resource_id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"742caaeb-cc5e-eda7-c644-d5a1525d006d","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:13:35.051548Z","updated_at":"2023-08-01T14:13:35.693155Z"},"name":"tf-test-destination","service_plan_id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","platform_id":"service-manager","context":{"platform":"sapcp","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","instance_name":"tf-test-destination"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:13:35.051545Z","updated_at":"2023-08-01T14:13:35.690384Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:30 GMT + - Tue, 01 Aug 2023 14:13:42 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 87480ea0-fd51-418d-54ad-7969f776262d + - eeb9c242-06d9-4858-6d83-1c9b9ca27a9a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 164.9076ms + duration: 166.326544ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 21ac3193-68e0-de34-1ebe-20ad65ada27e + - f2d653e1-7965-684b-dff3-1f0be72a924e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:30 GMT + - Tue, 01 Aug 2023 14:13:42 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 094a0309-16a4-4999-40fa-3f445375cb6a + - bf672eb7-e5c3-49b1-5d4c-58a4326583b4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 397.8475ms + duration: 341.175434ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f2e96c3f-03aa-1544-43d6-b7f012019995 + - e7e28c70-3249-22c4-dd68-854652fd84b4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:31 GMT + - Tue, 01 Aug 2023 14:13:43 GMT Expires: - "0" Pragma: @@ -891,33 +891,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 69758bad-a5c9-4905-7df9-706f11560061 + - c90fd468-24d3-4729-42f7-d1c2f3509f38 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.3033ms + duration: 229.811018ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 80c8118c-9c84-952f-00d8-670dcf7f157e + - e05a7f7b-4502-32da-5012-10030a6d50ff X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -928,18 +928,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:31 GMT + - Tue, 01 Aug 2023 14:13:43 GMT Expires: - "0" Pragma: @@ -953,12 +953,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 63d05652-b708-4656-7113-94943d3343b2 + - ace9bb62-ed9f-48ca-7b42-6101e96b348b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 389.3454ms + duration: 240.53414ms - id: 14 request: proto: HTTP/1.1 @@ -971,17 +971,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"confirm":"true","id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 67640c0c-7abf-c584-0c0f-9b282cab9f4d + - 9ffff886-e85e-b17c-c0bb-da48a62d524b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1005,7 +1005,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 13:02:31 GMT + - Tue, 01 Aug 2023 14:13:43 GMT Expires: - "0" Location: @@ -1029,12 +1029,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 257f7a86-b42d-46f2-66ab-678af7036de7 + - cb84e0ac-a854-477b-5f6e-dd5d00239500 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 306.3057ms + duration: 186.059809ms - id: 15 request: proto: "" @@ -1047,7 +1047,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"confirm":"true","id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1055,11 +1055,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 67640c0c-7abf-c584-0c0f-9b282cab9f4d + - 9ffff886-e85e-b17c-c0bb-da48a62d524b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1085,7 +1085,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:32 GMT + - Tue, 01 Aug 2023 14:13:44 GMT Expires: - "0" Pragma: @@ -1107,12 +1107,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 13e94845-e73a-496d-6062-644b0d6cded5 + - ce643682-79e6-4ee5-47e5-27d46a167db3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 948.9646ms + duration: 740.779742ms - id: 16 request: proto: HTTP/1.1 @@ -1125,17 +1125,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 011e6a1d-9387-9399-73a7-f35488e185b0 + - 40708e58-2d16-2276-c7c7-baf82e2485bd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1159,7 +1159,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 13:02:38 GMT + - Tue, 01 Aug 2023 14:13:49 GMT Expires: - "0" Location: @@ -1183,12 +1183,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 43c591c9-f3f4-47b9-4a5e-a1f96d04c367 + - 7e2c529e-1902-4832-5c8d-c08075106de0 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 186.1893ms + duration: 206.644914ms - id: 17 request: proto: "" @@ -1201,7 +1201,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"8d3d19d2-e4a3-46b1-a39b-7bb34bde7206","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"ca0d95e2-49b5-412a-a6c7-060bee0aab65","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1209,11 +1209,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 011e6a1d-9387-9399-73a7-f35488e185b0 + - 40708e58-2d16-2276-c7c7-baf82e2485bd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1240,7 +1240,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 13:02:38 GMT + - Tue, 01 Aug 2023 14:13:49 GMT Expires: - "0" Pragma: @@ -1262,9 +1262,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2580470d-7140-4484-40e1-94dee7d5a242 + - 673d371e-9b3b-42f0-4848-231e9116a32e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 118.5173ms + duration: 140.659294ms diff --git a/internal/provider/fixtures/resource_subaccount_service_instance_wo_parameters.yaml b/internal/provider/fixtures/resource_subaccount_service_instance_wo_parameters.yaml index 3d8d1655..dfe36757 100644 --- a/internal/provider/fixtures/resource_subaccount_service_instance_wo_parameters.yaml +++ b/internal/provider/fixtures/resource_subaccount_service_instance_wo_parameters.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 493f3578-5628-c461-05c6-6745d07e239a + - fb3e734a-0f2f-9b8d-4cac-149b389e6b49 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:34 GMT + - Tue, 01 Aug 2023 14:11:57 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 177c5f6d-a3f3-455d-4aa2-3d512a8a2060 + - 54716cac-55e0-4107-5403-a002d93fd5bd X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 848.6872ms + duration: 480.464658ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97e9f8e9-3f3f-8cbb-26b6-ef8599dd1298 + - 80ee4a9b-3bfe-b5d1-c8ec-af73bf33ed9a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:35 GMT + - Tue, 01 Aug 2023 14:11:58 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0fe91e10-6635-400d-6b99-2dbe3b69bed6 + - 69fc7bc0-52a7-41c9-47a9-fef9b1a13e47 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 583.2484ms + duration: 350.54426ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 84efeade-302f-078e-5525-e2597fa31928 + - 7fd9812a-af6a-7ab7-bd1f-f019aa6c6ab8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:36 GMT + - Tue, 01 Aug 2023 14:11:58 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a921a48b-a56f-44e4-4e47-74988b95011c + - f21bf91f-c6c1-4046-6339-afaa46647ad2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 421.4349ms + duration: 361.804773ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7a03fb59-6919-866d-961a-e4bd8cd4b629 + - 4005338a-c282-6de2-677c-194533c88002 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:36 GMT + - Tue, 01 Aug 2023 14:11:59 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b28820f9-21fe-47c3-4768-32ad3367a6c2 + - 1d626ce2-6e0b-42ff-72d9-53b894103a1c X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 241.7626ms + duration: 217.917631ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?create User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7a03fb59-6919-866d-961a-e4bd8cd4b629 + - 4005338a-c282-6de2-677c-194533c88002 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"cb1ebe92-a9d1-4c1a-9cee-dfc98a7e1111","ready":true,"type":"create","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"7a03fb59-6919-866d-961a-e4bd8cd4b629","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:36.936228Z","updated_at":"2023-07-24T12:45:37.265176Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:37.261353144Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"594a732b-56dd-4178-9ed4-4d76a92ff6ed","ready":true,"type":"create","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"4005338a-c282-6de2-677c-194533c88002","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:11:59.296784Z","updated_at":"2023-08-01T14:11:59.575939Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"platform":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","crm_customer_id":"","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:11:59.572959899Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5","username":"","password":""}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:37 GMT + - Tue, 01 Aug 2023 14:11:59 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 03468f86-a1d7-4766-6c3b-6f05baca2fc1 + - 63fa9a2f-42cb-42b1-499f-a3ceab7b2c5a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 952.6531ms + duration: 582.486584ms - id: 5 request: proto: HTTP/1.1 @@ -353,17 +353,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 02ebdbc4-b3a6-b4ae-503a-588a7eab1aac + - 2edf7fe2-3056-5ffd-023e-8ed558b4ddf9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:42 GMT + - Tue, 01 Aug 2023 14:12:04 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 25ff1351-5013-4da0-593b-6438d9e1f8af + - f6570a76-8d8b-4da8-6a6d-8fb4c476f665 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 222.8857ms + duration: 394.399555ms - id: 6 request: proto: "" @@ -429,7 +429,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 02ebdbc4-b3a6-b4ae-503a-588a7eab1aac + - 2edf7fe2-3056-5ffd-023e-8ed558b4ddf9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"cb1ebe92-a9d1-4c1a-9cee-dfc98a7e1111","ready":true,"type":"create","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"7a03fb59-6919-866d-961a-e4bd8cd4b629","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:36.936228Z","updated_at":"2023-07-24T12:45:37.265176Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:37.261353Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"594a732b-56dd-4178-9ed4-4d76a92ff6ed","ready":true,"type":"create","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"4005338a-c282-6de2-677c-194533c88002","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:11:59.296784Z","updated_at":"2023-08-01T14:11:59.575939Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"platform":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","crm_customer_id":"","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:11:59.57296Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:42 GMT + - Tue, 01 Aug 2023 14:12:05 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 011d5fcd-f353-4220-76a4-12073ad24493 + - 54013849-bcda-4261-4732-cb1b4499cae5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 180.2083ms + duration: 136.225601ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6feb97bc-26c8-fa84-cf1d-b9322ac94ed1 + - 37dfe777-c10e-651f-22e1-a5303eb7d31c X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:43 GMT + - Tue, 01 Aug 2023 14:12:05 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a59e801c-c398-4750-7340-fac7fb3a810e + - 87a61213-6bb1-4c70-4d5b-4eae0178488b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 377.9337ms + duration: 256.27101ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f1b958a5-3c60-2436-5e99-986f230ccf04 + - 3433f5d8-7dfb-8311-0e14-6e72914b4692 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:43 GMT + - Tue, 01 Aug 2023 14:12:06 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f7d933cc-b585-4c34-7104-d3d3c74de79a + - 830d0f22-fc10-4337-78a4-3255ac0ccb02 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 447.5924ms + duration: 375.077235ms - id: 9 request: proto: HTTP/1.1 @@ -631,17 +631,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 05eea554-14a2-8f21-fe6b-e37fe77a2f2e + - df74ea0c-f9aa-7bc6-50bf-e71b08dc1b6c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:43 GMT + - Tue, 01 Aug 2023 14:12:06 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 32e5924d-5926-4c69-7a1c-6ba5b9241fad + - 134c74b6-6097-43ff-7ee2-65d848ef6a00 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 211.5255ms + duration: 220.02922ms - id: 10 request: proto: "" @@ -707,7 +707,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 05eea554-14a2-8f21-fe6b-e37fe77a2f2e + - df74ea0c-f9aa-7bc6-50bf-e71b08dc1b6c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"cb1ebe92-a9d1-4c1a-9cee-dfc98a7e1111","ready":true,"type":"create","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"7a03fb59-6919-866d-961a-e4bd8cd4b629","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:36.936228Z","updated_at":"2023-07-24T12:45:37.265176Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:37.261353Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"594a732b-56dd-4178-9ed4-4d76a92ff6ed","ready":true,"type":"create","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"4005338a-c282-6de2-677c-194533c88002","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:11:59.296784Z","updated_at":"2023-08-01T14:11:59.575939Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"platform":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","crm_customer_id":"","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:11:59.57296Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:44 GMT + - Tue, 01 Aug 2023 14:12:06 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7d46b1c5-20c1-4c48-4ca3-a07bea1bfecf + - 6cf034c8-3e6f-4eae-5ea8-d82d70055b8f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 146.3124ms + duration: 114.638398ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 97d87003-aaf2-00ec-ab2f-0f6bf046949b + - c89f6f9a-4d07-225d-0012-bebfe7a0aa43 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:44 GMT + - Tue, 01 Aug 2023 14:12:06 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 37c25701-0164-4808-53c3-dd331a047ce0 + - 2ee6c3ae-6a7c-4d4a-7068-e02ec4dc0afb X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 366.6689ms + duration: 334.853994ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - efdac371-10c3-e086-05d0-e79641d2a78b + - 77485aab-4743-faad-fa55-625a97d70446 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:45 GMT + - Tue, 01 Aug 2023 14:12:07 GMT Expires: - "0" Pragma: @@ -891,12 +891,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fa0e77fd-e475-47fd-7061-600b904869cf + - cbc30d82-a071-402d-5ae4-509d5946dc26 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 448.458ms + duration: 283.934239ms - id: 13 request: proto: HTTP/1.1 @@ -909,17 +909,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f9ba1ad5-b723-57d2-6e2a-679926da1d39 + - 926607d9-6b45-5cfd-3623-5fa42dd367f8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -943,7 +943,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:45 GMT + - Tue, 01 Aug 2023 14:12:07 GMT Expires: - "0" Location: @@ -967,12 +967,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 05bc605e-110b-44f4-5092-0f6fc1c73faf + - 90b655a8-5802-42d4-55f0-4cd3616e5f96 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 197.507ms + duration: 243.035882ms - id: 14 request: proto: "" @@ -985,7 +985,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -993,11 +993,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f9ba1ad5-b723-57d2-6e2a-679926da1d39 + - 926607d9-6b45-5cfd-3623-5fa42dd367f8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1016,14 +1016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"cb1ebe92-a9d1-4c1a-9cee-dfc98a7e1111","ready":true,"type":"create","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"7a03fb59-6919-866d-961a-e4bd8cd4b629","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:36.936228Z","updated_at":"2023-07-24T12:45:37.265176Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","crm_customer_id":"","platform":"sapcp","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","license_type":"SAPDEV","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:37.261353Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"594a732b-56dd-4178-9ed4-4d76a92ff6ed","ready":true,"type":"create","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"4005338a-c282-6de2-677c-194533c88002","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:11:59.296784Z","updated_at":"2023-08-01T14:11:59.575939Z"},"name":"tf-test-audit-log","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"platform":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","region":"cf-eu12","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","crm_customer_id":"","instance_name":"tf-test-audit-log"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:11:59.57296Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:45 GMT + - Tue, 01 Aug 2023 14:12:07 GMT Expires: - "0" Pragma: @@ -1045,33 +1045,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5d056a83-29d5-42c9-7779-fe8bbb395e9a + - a4872e01-ed4c-4d64-76cd-3bbb7b36c69d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 122.0665ms + duration: 139.289405ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 335df3e6-36f9-c13a-383b-bf40cb9411a7 + - dc2cabfe-294c-309c-3741-18b3bd2588bc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1082,18 +1082,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:45 GMT + - Tue, 01 Aug 2023 14:12:08 GMT Expires: - "0" Pragma: @@ -1107,33 +1107,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a9d75309-587f-408c-4d93-9d2464c12c5b + - 663c1cf9-efd4-440e-526a-26494bc1d3aa X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 387.1028ms + duration: 327.189854ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - c6650a77-cf60-dba1-e6a8-227070a677cc + - fae6a84d-d077-9077-55c9-5c7c69199f3a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1144,18 +1144,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:46 GMT + - Tue, 01 Aug 2023 14:12:08 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6fe996b6-bf34-49d4-787e-b38cad274e41 + - b342355b-f79e-40fb-6e81-0de70f5f610d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 374.3156ms + duration: 488.369246ms - id: 17 request: proto: HTTP/1.1 @@ -1187,17 +1187,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","name":"tf-test-audit-log","newName":"TF-TEST-AUDIT-LOG","plan":"02fed361-89c1-4560-82c3-0deaf93ac75b","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","name":"tf-test-audit-log","newName":"TF-TEST-AUDIT-LOG","plan":"02fed361-89c1-4560-82c3-0deaf93ac75b","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bae0e12b-e3a1-0dec-bc75-b8b4d6bea7f8 + - 45ac2e2a-0ac4-eb1f-875d-197a638e8585 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:46 GMT + - Tue, 01 Aug 2023 14:12:09 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5b4242b9-6717-4c27-7082-502bfc1aef86 + - 3ca025bd-6e29-40d4-6ef8-74ef99a36521 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 176.135ms + duration: 190.593444ms - id: 18 request: proto: "" @@ -1263,7 +1263,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","name":"tf-test-audit-log","newName":"TF-TEST-AUDIT-LOG","plan":"02fed361-89c1-4560-82c3-0deaf93ac75b","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","name":"tf-test-audit-log","newName":"TF-TEST-AUDIT-LOG","plan":"02fed361-89c1-4560-82c3-0deaf93ac75b","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?update User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - bae0e12b-e3a1-0dec-bc75-b8b4d6bea7f8 + - 45ac2e2a-0ac4-eb1f-875d-197a638e8585 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1294,14 +1294,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: Use 'btp get services/instance 205c28c8-e453-42ec-895d-047d1ec8c4e2 --subaccount 59cd458e-e66e-4b60-b6d8-8f219379f9a5' to check the status of the update instance operation you initiated. + body: Use 'btp get services/instance 073615a0-bd4e-455e-b6fb-43577274b245 --subaccount 59cd458e-e66e-4b60-b6d8-8f219379f9a5' to check the status of the update instance operation you initiated. headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:46 GMT + - Tue, 01 Aug 2023 14:12:09 GMT Expires: - "0" Pragma: @@ -1323,12 +1323,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 818beef7-19ba-4725-6a04-34d225b9a910 + - 8aa79580-a4ec-4ff6-546b-43d4753ccbb6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 271.1733ms + duration: 263.025002ms - id: 19 request: proto: HTTP/1.1 @@ -1341,17 +1341,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f6f92494-a9b3-1a8c-41b5-9e57e297dd09 + - 09464938-682e-4aad-36d7-28c21092aefd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1375,7 +1375,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:47 GMT + - Tue, 01 Aug 2023 14:12:09 GMT Expires: - "0" Location: @@ -1399,12 +1399,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 228adedc-052e-4c6c-7ed5-b35936984ae3 + - 10cff180-67e7-40f8-4e95-bddee9b5f13f X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 206.6296ms + duration: 185.31353ms - id: 20 request: proto: "" @@ -1417,7 +1417,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1425,11 +1425,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - f6f92494-a9b3-1a8c-41b5-9e57e297dd09 + - 09464938-682e-4aad-36d7-28c21092aefd X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1448,14 +1448,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"0dec6797-e0d2-4a09-b873-76ce9e11f934","ready":true,"type":"update","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"bae0e12b-e3a1-0dec-bc75-b8b4d6bea7f8","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:46.816518Z","updated_at":"2023-07-24T12:45:46.931035Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:46.9198Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"62437e02-936a-462c-898b-e6449c7069d1","ready":true,"type":"update","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"45ac2e2a-0ac4-eb1f-875d-197a638e8585","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:09.297963Z","updated_at":"2023-08-01T14:12:09.4032Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","platform":"sapcp","origin":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","region":"cf-eu12","crm_customer_id":"","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:12:09.39236Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:47 GMT + - Tue, 01 Aug 2023 14:12:09 GMT Expires: - "0" Pragma: @@ -1477,12 +1477,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - efdd5977-66d3-430e-7dce-e080b0e83885 + - 6c94423d-d707-4330-7016-a9a4c7a655b3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 132.5694ms + duration: 110.488847ms - id: 21 request: proto: HTTP/1.1 @@ -1495,17 +1495,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44f0e6c3-c970-fda0-6062-a1104da5d922 + - 3604f206-dc62-c014-8eda-dd952014e135 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1529,7 +1529,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:52 GMT + - Tue, 01 Aug 2023 14:12:14 GMT Expires: - "0" Location: @@ -1553,12 +1553,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - baeae517-229a-48b2-4429-51e1453bc140 + - 0fba4223-9c81-4444-5066-377991432734 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 232.9742ms + duration: 224.306239ms - id: 22 request: proto: "" @@ -1571,7 +1571,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1579,11 +1579,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 44f0e6c3-c970-fda0-6062-a1104da5d922 + - 3604f206-dc62-c014-8eda-dd952014e135 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1602,14 +1602,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"0dec6797-e0d2-4a09-b873-76ce9e11f934","ready":true,"type":"update","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"bae0e12b-e3a1-0dec-bc75-b8b4d6bea7f8","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:46.816518Z","updated_at":"2023-07-24T12:45:46.931035Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:46.9198Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"62437e02-936a-462c-898b-e6449c7069d1","ready":true,"type":"update","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"45ac2e2a-0ac4-eb1f-875d-197a638e8585","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:09.297963Z","updated_at":"2023-08-01T14:12:09.4032Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","platform":"sapcp","origin":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","region":"cf-eu12","crm_customer_id":"","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:12:09.39236Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:52 GMT + - Tue, 01 Aug 2023 14:12:14 GMT Expires: - "0" Pragma: @@ -1631,33 +1631,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - efa0e6f7-d9f9-43d1-505b-e1a4b18e328a + - ad4a55c0-28ed-497d-7a6f-5dfbe0f8d0e9 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 168.4867ms + duration: 94.697338ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 19a8188c-0e7e-c0f2-5877-57d68eb80085 + - 87a1c5c9-5e24-f066-a8ef-5dc36e9465c7 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1668,18 +1668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:53 GMT + - Tue, 01 Aug 2023 14:12:15 GMT Expires: - "0" Pragma: @@ -1693,33 +1693,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c4e25a8f-24f8-4150-5b65-1e5672691bcf + - 22a624c2-206f-4538-618b-614fdc065e07 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 359.3901ms + duration: 316.678527ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - b78dc235-3ff0-9831-d085-8ed15bcd24f9 + - 94292e18-e422-b65f-fd1f-9b1c511b7a83 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1730,18 +1730,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:53 GMT + - Tue, 01 Aug 2023 14:12:16 GMT Expires: - "0" Pragma: @@ -1755,12 +1755,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 1ebcc141-579f-4b33-4aba-e1623b4ef886 + - 28704b8e-ee34-42d9-7a39-77b5d7b3b879 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 439.0805ms + duration: 364.612342ms - id: 25 request: proto: HTTP/1.1 @@ -1773,17 +1773,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 39079785-6c15-c87c-817b-a3c7c6e2af4f + - 90c639a6-bf73-082f-c693-24a8bb9ec943 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1807,7 +1807,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:53 GMT + - Tue, 01 Aug 2023 14:12:16 GMT Expires: - "0" Location: @@ -1831,12 +1831,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - c3e2e108-a64b-422a-6a3d-ed6905f8ea2f + - 4d49e910-fd35-4e5c-600b-92cfd9d37686 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 205.1358ms + duration: 171.752353ms - id: 26 request: proto: "" @@ -1849,7 +1849,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -1857,11 +1857,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 39079785-6c15-c87c-817b-a3c7c6e2af4f + - 90c639a6-bf73-082f-c693-24a8bb9ec943 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1880,14 +1880,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"0dec6797-e0d2-4a09-b873-76ce9e11f934","ready":true,"type":"update","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"bae0e12b-e3a1-0dec-bc75-b8b4d6bea7f8","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:46.816518Z","updated_at":"2023-07-24T12:45:46.931035Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:46.9198Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"62437e02-936a-462c-898b-e6449c7069d1","ready":true,"type":"update","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"45ac2e2a-0ac4-eb1f-875d-197a638e8585","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:09.297963Z","updated_at":"2023-08-01T14:12:09.4032Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","platform":"sapcp","origin":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","region":"cf-eu12","crm_customer_id":"","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:12:09.39236Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:53 GMT + - Tue, 01 Aug 2023 14:12:16 GMT Expires: - "0" Pragma: @@ -1909,33 +1909,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 4d238c8c-5618-4cbf-7405-2279cd4868e3 + - df388640-b8b3-4426-62d7-4063c2f3d509 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 125.7382ms + duration: 102.840878ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7de355c9-1832-71b5-5a35-2c0579de0286 + - 56e28885-9dc1-a1c1-f9a7-67d29c847d1a X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1946,18 +1946,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:54 GMT + - Tue, 01 Aug 2023 14:12:16 GMT Expires: - "0" Pragma: @@ -1971,33 +1971,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bcf53344-9933-40f4-7344-efcd66ed628f + - 7f60d1c1-f423-483b-5602-0690d98174f2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.4642ms + duration: 221.269172ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 37f10b61-fc11-3de6-7b71-e1bfacddb0a0 + - c34cbd8d-58eb-525e-6884-206b4d7d21f8 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2008,18 +2008,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:54 GMT + - Tue, 01 Aug 2023 14:12:17 GMT Expires: - "0" Pragma: @@ -2033,12 +2033,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ba146c39-bd13-44a8-6f15-8a94115fcd12 + - 182e7b35-e3cf-4a48-58e2-d84e8faa25f8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 354.4392ms + duration: 309.51635ms - id: 29 request: proto: HTTP/1.1 @@ -2051,17 +2051,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cd68e306-63e6-c32c-044a-235e31aebc98 + - c2de7a21-3f03-9274-4836-2c334d32ebf6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2085,7 +2085,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:55 GMT + - Tue, 01 Aug 2023 14:12:17 GMT Expires: - "0" Location: @@ -2109,12 +2109,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - da8527b7-f96c-4bd3-54be-115147153dd6 + - 73381b4b-baea-4140-7cbb-d376425666dc X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 204.5692ms + duration: 176.698261ms - id: 30 request: proto: "" @@ -2127,7 +2127,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -2135,11 +2135,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cd68e306-63e6-c32c-044a-235e31aebc98 + - c2de7a21-3f03-9274-4836-2c334d32ebf6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2158,14 +2158,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","ready":true,"last_operation":{"id":"0dec6797-e0d2-4a09-b873-76ce9e11f934","ready":true,"type":"update","state":"succeeded","resource_id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"bae0e12b-e3a1-0dec-bc75-b8b4d6bea7f8","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-24T12:45:46.816518Z","updated_at":"2023-07-24T12:45:46.931035Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","platform":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-24T12:45:36.936225Z","updated_at":"2023-07-24T12:45:46.9198Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' + body: '{"id":"073615a0-bd4e-455e-b6fb-43577274b245","ready":true,"last_operation":{"id":"62437e02-936a-462c-898b-e6449c7069d1","ready":true,"type":"update","state":"succeeded","resource_id":"073615a0-bd4e-455e-b6fb-43577274b245","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"45ac2e2a-0ac4-eb1f-875d-197a638e8585","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-08-01T14:12:09.297963Z","updated_at":"2023-08-01T14:12:09.4032Z"},"name":"TF-TEST-AUDIT-LOG","service_plan_id":"02fed361-89c1-4560-82c3-0deaf93ac75b","platform_id":"service-manager","context":{"zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","platform":"sapcp","origin":"sapcp","global_account_id":"03760ecf-9d89-4189-a92a-1c7efed09298","license_type":"SAPDEV","region":"cf-eu12","crm_customer_id":"","instance_name":"TF-TEST-AUDIT-LOG"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-08-01T14:11:59.296781Z","updated_at":"2023-08-01T14:12:09.39236Z","labels":"subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:55 GMT + - Tue, 01 Aug 2023 14:12:17 GMT Expires: - "0" Pragma: @@ -2187,33 +2187,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6428ef27-0004-44a5-669f-4424bc6af8ec + - 5b2fbbee-b087-4e8e-4146-1b2dfaafd690 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 146.7718ms + duration: 94.468165ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 377b03fc-554b-fc6c-f050-7becadf99f0e + - e69d133d-b3a9-a1f0-c199-2f0ecfb76df9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2224,18 +2224,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:55 GMT + - Tue, 01 Aug 2023 14:12:18 GMT Expires: - "0" Pragma: @@ -2249,33 +2249,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cedb31b5-1cc7-467e-7f57-0465c0f02781 + - 5287fa81-ebc3-44e0-780f-da1d00f13fcc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 335.3254ms + duration: 270.789373ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5328e674-cf97-747e-1207-368ac30bff39 + - 92f28fbd-85b0-b6e4-b36f-19179459a5c4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -2286,18 +2286,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:56 GMT + - Tue, 01 Aug 2023 14:12:18 GMT Expires: - "0" Pragma: @@ -2311,12 +2311,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 7ea942c8-2157-4cc7-443d-81ffa1663356 + - 9916e334-1fa2-4e7e-5d9d-e38b193ed306 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 343.3165ms + duration: 234.924818ms - id: 33 request: proto: HTTP/1.1 @@ -2329,17 +2329,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"confirm":"true","id":"073615a0-bd4e-455e-b6fb-43577274b245","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9abbcffe-7108-6f3a-31ae-7848a4625cd0 + - 8fcb5105-4e9f-3e92-2736-cf9cff3e18dc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2363,7 +2363,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:45:56 GMT + - Tue, 01 Aug 2023 14:12:18 GMT Expires: - "0" Location: @@ -2387,12 +2387,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 0a1b652f-4b07-421e-7cbc-692bc7accff4 + - cd86abe4-ef4c-41d5-435c-c8adad8cffc3 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.4167ms + duration: 174.591685ms - id: 34 request: proto: "" @@ -2405,7 +2405,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"confirm":"true","id":"073615a0-bd4e-455e-b6fb-43577274b245","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -2413,11 +2413,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?delete User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9abbcffe-7108-6f3a-31ae-7848a4625cd0 + - 8fcb5105-4e9f-3e92-2736-cf9cff3e18dc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2443,7 +2443,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:45:56 GMT + - Tue, 01 Aug 2023 14:12:18 GMT Expires: - "0" Pragma: @@ -2465,12 +2465,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30aa90c6-4de0-4869-4211-c9dc17c87537 + - a09f6f2c-b828-4f0a-6611-38c3d04c98d3 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 331.7603ms + duration: 347.672205ms - id: 35 request: proto: HTTP/1.1 @@ -2483,17 +2483,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4c87b564-dd1a-bdab-8f3a-275197dfc59a + - 1c5e299f-d547-23c8-a969-9af88a7f1d77 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2517,7 +2517,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 24 Jul 2023 12:46:09 GMT + - Tue, 01 Aug 2023 14:12:24 GMT Expires: - "0" Location: @@ -2541,12 +2541,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 6d7f66e5-2d7d-4325-51d3-ac391c918fbe + - d2c300c3-d1f9-432d-6d1b-20b5770d7507 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 231.3665ms + duration: 586.442986ms - id: 36 request: proto: "" @@ -2559,7 +2559,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"id":"205c28c8-e453-42ec-895d-047d1ec8c4e2","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + {"paramValues":{"id":"073615a0-bd4e-455e-b6fb-43577274b245","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} form: {} headers: Content-Type: @@ -2567,11 +2567,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/services/instance?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4c87b564-dd1a-bdab-8f3a-275197dfc59a + - 1c5e299f-d547-23c8-a969-9af88a7f1d77 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2598,7 +2598,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 24 Jul 2023 12:46:10 GMT + - Tue, 01 Aug 2023 14:12:24 GMT Expires: - "0" Pragma: @@ -2620,9 +2620,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 8397fe4e-5e01-44fb-5a7f-e9cf0412fd6c + - 26efd110-15e4-4666-42ad-8619f810e1d0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 124.079ms + duration: 105.087675ms diff --git a/internal/provider/fixtures/resource_subaccount_subscription.yaml b/internal/provider/fixtures/resource_subaccount_subscription.yaml index 49147ee5..c497f42c 100644 --- a/internal/provider/fixtures/resource_subaccount_subscription.yaml +++ b/internal/provider/fixtures/resource_subaccount_subscription.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0279e46d-f110-f7bb-27c7-b04fa97b6141 + - f3df52e8-074d-9ae9-b24c-2d6854c0e1fc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:49 GMT + - Tue, 01 Aug 2023 07:32:26 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 69993875-bf30-4d31-607a-562f01f78fca + - 719203e6-8b0d-4986-6686-bcfb8673a710 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 482.4899ms + duration: 308.566208ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a681f862-f9ab-233c-1cbf-37210b53a349 + - 4b90b2ab-ddb9-9619-cffe-de64ba9509cb X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:50 GMT + - Tue, 01 Aug 2023 07:32:26 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f64ada9d-5352-4d14-5ca2-af2c58c20041 + - c5aab93d-488b-45e4-5dd2-76fbf985e5e8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 388.6317ms + duration: 231.806739ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - d3418df4-febf-781b-d247-2770eb5a1e75 + - 2eb9bddc-0457-822a-3da3-c59793a5a797 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:50 GMT + - Tue, 01 Aug 2023 07:32:27 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d25d42a6-f212-4ca0-603f-5ff467d66543 + - 1dcb0263-d9c6-4b08-5175-e107bab4cd6b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.075ms + duration: 295.385185ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a128602-55de-04c1-e008-35889cf76e6a + - 2c489702-9e7e-4935-f8a9-d8be96ef2dec X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:58:51 GMT + - Tue, 01 Aug 2023 07:32:27 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 56d55cc1-9427-477d-6878-9522f13c91c1 + - 9110fd6d-7c9e-44c7-5098-c6b160798289 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 175.164ms + duration: 203.434036ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subaccount?subscribe User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5a128602-55de-04c1-e008-35889cf76e6a + - 2c489702-9e7e-4935-f8a9-d8be96ef2dec X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"11498386"}' + body: '{"jobId":"11820653"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:51 GMT + - Tue, 01 Aug 2023 07:32:28 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 22adf69e-2f0b-4bc0-414f-13d65c1a82e8 + - e4267c7e-d9f2-4358-5257-b42592a69602 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 631.2561ms + duration: 590.318868ms - id: 5 request: proto: HTTP/1.1 @@ -359,11 +359,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc9bbd1d-c15b-52e8-97c3-ac14d174e3b3 + - 2523d409-9077-cf8a-0ed4-18c1f9ca4e00 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:58:56 GMT + - Tue, 01 Aug 2023 07:32:33 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 7d71f91d-e18b-4136-6d97-c25a8a6e6bdf + - edbae5ae-15c1-431a-793a-1f48c7d60462 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 191.9832ms + duration: 208.195421ms - id: 6 request: proto: "" @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dc9bbd1d-c15b-52e8-97c3-ac14d174e3b3 + - 2523d409-9077-cf8a-0ed4-18c1f9ca4e00 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"dc1b7ece-7250-462f-b2a6-5d00d782d081","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Jul 25, 2023, 7:58:53 AM","createdDate":"Jul 25, 2023, 7:58:51 AM"}' + body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"14b529c0-43c2-40f5-8bb3-ae351938e306","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Aug 1, 2023, 7:32:30 AM","createdDate":"Aug 1, 2023, 7:32:28 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:57 GMT + - Tue, 01 Aug 2023 07:32:33 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d5c2d995-834d-48f4-5067-c8bc10528aa7 + - 67943831-a7a6-4cf7-6efe-09192e06f4e6 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 422.7322ms + duration: 435.413349ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 443c5dd3-9906-ef36-0b3d-b6855f6fc143 + - 4572cc7e-ecfc-16fa-e991-3bcb85740fa4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:57 GMT + - Tue, 01 Aug 2023 07:32:34 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 30e870f6-d6f0-45fa-783b-79f1113b3883 + - 97940301-e94d-46e1-6fd4-6df3e974ab2d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 361.7116ms + duration: 292.311853ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6ffac34b-092e-d281-6c7b-c1ae87eca2b2 + - fcb68ad1-afc7-9f54-1b37-6e89c6d441c3 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:58 GMT + - Tue, 01 Aug 2023 07:32:34 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6cf873c1-cbf4-4ca0-5e4b-a055e54e23d6 + - 6cf16c24-bcb6-4ea7-568b-9d3d77862ff0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.632ms + duration: 246.814671ms - id: 9 request: proto: HTTP/1.1 @@ -637,11 +637,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2132a438-3da4-cb9f-c8de-5b7a5dbc21bd + - 631046dd-97cc-5fe5-4b86-abaf18af6ad6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:58:58 GMT + - Tue, 01 Aug 2023 07:32:34 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - b5ea90d8-2bd9-4e47-6985-d98a12a6e10f + - 0a9d1349-5b81-4d94-47b8-53d053f31774 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 197.2663ms + duration: 173.267488ms - id: 10 request: proto: "" @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2132a438-3da4-cb9f-c8de-5b7a5dbc21bd + - 631046dd-97cc-5fe5-4b86-abaf18af6ad6 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"dc1b7ece-7250-462f-b2a6-5d00d782d081","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Jul 25, 2023, 7:58:53 AM","createdDate":"Jul 25, 2023, 7:58:51 AM"}' + body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"14b529c0-43c2-40f5-8bb3-ae351938e306","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Aug 1, 2023, 7:32:30 AM","createdDate":"Aug 1, 2023, 7:32:28 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:58 GMT + - Tue, 01 Aug 2023 07:32:35 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d648c90c-799a-4f29-4d88-c57b6609b843 + - 86d07eca-40c1-484a-6afe-1d1caf6bbb50 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 432.2229ms + duration: 556.807055ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6d018b71-758e-948d-dbca-e7df2ad34830 + - 5232ef58-2a90-46cb-c373-29ae33e19fb6 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:59 GMT + - Tue, 01 Aug 2023 07:32:35 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d074f0b5-9066-47a0-6838-86b1ffba01fd + - 4df58a7b-5970-4494-6ffe-449ea2608e77 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 413.2218ms + duration: 202.996932ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 17b960e2-bfcf-d70c-1164-490a2d4a3bb0 + - 4375a7f2-41d7-613b-f6a9-b954e12bced9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:58:59 GMT + - Tue, 01 Aug 2023 07:32:36 GMT Expires: - "0" Pragma: @@ -891,12 +891,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c7ea2bac-2fc2-4aac-45f9-db3c607875a1 + - b13e6cb8-6c43-4711-4ec3-118c9df9f9f4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 407.8954ms + duration: 195.874678ms - id: 13 request: proto: HTTP/1.1 @@ -915,11 +915,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 94d12e17-4766-2cb6-477e-a107d3a049ab + - 779f4afc-df97-11aa-bc33-5bf5cd736dfb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -943,7 +943,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:00 GMT + - Tue, 01 Aug 2023 07:32:36 GMT Expires: - "0" Location: @@ -967,12 +967,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 204bd9b9-9840-4bde-6e0a-1d8ccd1518cc + - f4f37932-78f4-4dd3-4e9e-735501ff2373 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 290.3439ms + duration: 164.112447ms - id: 14 request: proto: "" @@ -993,11 +993,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 94d12e17-4766-2cb6-477e-a107d3a049ab + - 779f4afc-df97-11aa-bc33-5bf5cd736dfb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1016,14 +1016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"dc1b7ece-7250-462f-b2a6-5d00d782d081","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Jul 25, 2023, 7:58:53 AM","createdDate":"Jul 25, 2023, 7:58:51 AM"}' + body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"14b529c0-43c2-40f5-8bb3-ae351938e306","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Aug 1, 2023, 7:32:30 AM","createdDate":"Aug 1, 2023, 7:32:28 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:00 GMT + - Tue, 01 Aug 2023 07:32:36 GMT Expires: - "0" Pragma: @@ -1045,33 +1045,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 07c2cdcb-7c7c-4147-6a87-450ddc5fbee0 + - 850c31d7-6340-4f1b-5a35-457169a8ca2f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 489.7749ms + duration: 426.742949ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 969f3d50-af5f-4076-477c-7c698d1f7301 + - 5b5342df-06ad-e3ef-cee0-f055254ca9d9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1082,18 +1082,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:01 GMT + - Tue, 01 Aug 2023 07:32:37 GMT Expires: - "0" Pragma: @@ -1107,33 +1107,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cd859731-90f6-479e-6ba4-83a612ce0d1f + - aae783b7-e676-40c6-51a5-105e2ff9f9b8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 371.9925ms + duration: 286.496166ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5da7340d-e76b-0ced-6d27-d6296ca028bb + - 7257da31-2139-886a-dafe-da65f3824963 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1144,18 +1144,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:01 GMT + - Tue, 01 Aug 2023 07:32:37 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - ddedd198-3eda-493d-62d8-af74a2efd7f7 + - 7330dce2-eb3d-4616-5e06-141813111851 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 456.5589ms + duration: 294.201286ms - id: 17 request: proto: HTTP/1.1 @@ -1193,11 +1193,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - feb64870-7489-781c-aba0-b23031de8f43 + - 7e50e418-abb2-f283-4774-7b43c869ec1b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:01 GMT + - Tue, 01 Aug 2023 07:32:37 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - cb0dbffa-6164-46e9-78c4-11c4dbf2160f + - cff7a815-0db7-4eb9-6114-5dcf9ccda903 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 247.5804ms + duration: 205.559411ms - id: 18 request: proto: "" @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subaccount?unsubscribe User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - feb64870-7489-781c-aba0-b23031de8f43 + - 7e50e418-abb2-f283-4774-7b43c869ec1b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1294,14 +1294,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"11498391"}' + body: '{"jobId":"11820671"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:02 GMT + - Tue, 01 Aug 2023 07:32:38 GMT Expires: - "0" Pragma: @@ -1323,12 +1323,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 69ec89e7-00f8-4eca-67c8-ff8c575394bd + - 5c0b9e93-2f64-4f8a-721b-a19a5e8bfc2c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 278.1575ms + duration: 297.455332ms - id: 19 request: proto: HTTP/1.1 @@ -1347,11 +1347,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dad9e1e9-3d4f-66b8-4774-7dffc5a6ecdd + - d231cd41-da35-c9d7-d086-249e0ba176a1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1375,7 +1375,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:07 GMT + - Tue, 01 Aug 2023 07:32:43 GMT Expires: - "0" Location: @@ -1399,12 +1399,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 66b55030-d834-40af-6275-3f97eadbd908 + - 7099b231-ba91-4603-7f97-36e3f0ae0213 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 267.1239ms + duration: 241.280493ms - id: 20 request: proto: "" @@ -1425,11 +1425,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dad9e1e9-3d4f-66b8-4774-7dffc5a6ecdd + - d231cd41-da35-c9d7-d086-249e0ba176a1 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1455,7 +1455,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:07 GMT + - Tue, 01 Aug 2023 07:32:43 GMT Expires: - "0" Pragma: @@ -1477,9 +1477,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a502a711-6efa-40f0-7151-5fed91008d94 + - 1bfc8c97-e325-4e98-637b-564286407a42 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 454.8863ms + duration: 395.558149ms diff --git a/internal/provider/fixtures/resource_subaccount_subscription_import_error.yaml b/internal/provider/fixtures/resource_subaccount_subscription_import_error.yaml index 6588c6e6..803d5fc8 100644 --- a/internal/provider/fixtures/resource_subaccount_subscription_import_error.yaml +++ b/internal/provider/fixtures/resource_subaccount_subscription_import_error.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 9f6946a5-c01b-9917-26a0-c24fa48033bc + - fa6d8b60-022a-8618-ff9f-341cea368d10 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:37 GMT + - Tue, 01 Aug 2023 07:32:45 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0923ae48-7f6e-47c8-60ea-164335a1f649 + - ecd35a84-f1b0-46ce-4216-cb0156fb91de X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 470.6972ms + duration: 295.19897ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6bc795e6-d8db-494c-61eb-0485abf53086 + - 3e5af0ec-9d6d-49d0-d802-67d1426142cc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:37 GMT + - Tue, 01 Aug 2023 07:32:45 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 01016b38-8dcc-46b7-7094-09e6f91f96f4 + - ce0fb65b-ae13-4bd1-7e1c-c61e40336b13 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 349.9652ms + duration: 222.075698ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - edbe6a25-2319-59ac-eed5-af9335a911c1 + - 451f6939-f1ba-e61a-47b1-4ea8dbc0d948 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:38 GMT + - Tue, 01 Aug 2023 07:32:46 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - eab86a60-4181-4dd5-7e5c-31590865c570 + - 3f21764e-9cc7-4a52-5348-40ee085b3f6a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 345.7492ms + duration: 366.000956ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a5cd570a-765b-1021-ee64-f2854a40db4e + - a6e06c40-3255-9a8b-c2f6-72f5837456f8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -233,7 +233,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:38 GMT + - Tue, 01 Aug 2023 07:32:46 GMT Expires: - "0" Location: @@ -257,12 +257,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 65726963-c583-4dcb-4715-644144afc2eb + - 2ffbff8f-a4ca-4cae-7e63-99253caaaa06 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 158.3526ms + duration: 210.281569ms - id: 4 request: proto: "" @@ -283,11 +283,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subaccount?subscribe User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a5cd570a-765b-1021-ee64-f2854a40db4e + - a6e06c40-3255-9a8b-c2f6-72f5837456f8 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -306,14 +306,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"11498419"}' + body: '{"jobId":"11820676"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:39 GMT + - Tue, 01 Aug 2023 07:32:47 GMT Expires: - "0" Pragma: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 69afd93d-2fe5-494a-7cb9-4ad9ce62d3f4 + - cadced81-911b-4411-6c1d-6dd85e9d6aa4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 674.2921ms + duration: 486.476412ms - id: 5 request: proto: HTTP/1.1 @@ -359,11 +359,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 27670511-a9a1-37bf-efd2-d76d21775dbb + - 63dcd523-8b81-1278-cf14-fbadedaecb8b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -387,7 +387,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:44 GMT + - Tue, 01 Aug 2023 07:32:52 GMT Expires: - "0" Location: @@ -411,12 +411,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 5dd5cbdf-87ee-4787-4699-a205808d1202 + - 0a0d2e83-f888-4f8e-5f97-430fcdce395d X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 227.4651ms + duration: 246.819471ms - id: 6 request: proto: "" @@ -437,11 +437,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 27670511-a9a1-37bf-efd2-d76d21775dbb + - 63dcd523-8b81-1278-cf14-fbadedaecb8b X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -460,14 +460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"6f10ae09-c418-4159-9ffe-a8b3bbee9c7e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Jul 25, 2023, 7:59:41 AM","createdDate":"Jul 25, 2023, 7:59:39 AM"}' + body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"e9bf076e-9d82-4c0e-9caa-ed2ba66b47a4","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Aug 1, 2023, 7:32:49 AM","createdDate":"Aug 1, 2023, 7:32:47 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:44 GMT + - Tue, 01 Aug 2023 07:32:52 GMT Expires: - "0" Pragma: @@ -489,33 +489,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cc28035f-287a-4c42-6115-a6f22fb620dc + - f6d172ee-f8d0-4ce9-67bc-a371a160096e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 479.6554ms + duration: 387.65904ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 49820a3d-de53-f48c-8055-79a8eb90e37a + - 63ed94c4-e4e0-47ef-2536-7d0647ce45ba X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -526,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:45 GMT + - Tue, 01 Aug 2023 07:32:53 GMT Expires: - "0" Pragma: @@ -551,33 +551,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 25670866-6516-49e2-659c-f8dd6f8f72c1 + - 0d9d4f76-0089-4a46-7210-fde02cedfd20 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 427.1712ms + duration: 180.673481ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 95935c5d-a123-cc31-a257-b11fad680962 + - 0dbb357c-fffd-0245-cf1f-0ce94dbabded X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -588,18 +588,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:45 GMT + - Tue, 01 Aug 2023 07:32:53 GMT Expires: - "0" Pragma: @@ -613,12 +613,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bd886d6e-06b2-486f-6db4-15344fe92107 + - f50344a1-a02a-43f5-57e6-214e2aab769f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 365.9572ms + duration: 482.415598ms - id: 9 request: proto: HTTP/1.1 @@ -637,11 +637,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae049554-d41a-a85a-ea6d-2376c9507c8d + - cb58b71c-91b1-c967-cd8e-76e1c531c790 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -665,7 +665,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:45 GMT + - Tue, 01 Aug 2023 07:32:54 GMT Expires: - "0" Location: @@ -689,12 +689,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 8719737b-f7cc-438a-4e60-bce25dd0c040 + - 9609a997-6a7c-4ba9-7149-3deb7fc71d09 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 169.1527ms + duration: 246.174265ms - id: 10 request: proto: "" @@ -715,11 +715,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ae049554-d41a-a85a-ea6d-2376c9507c8d + - cb58b71c-91b1-c967-cd8e-76e1c531c790 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -738,14 +738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"6f10ae09-c418-4159-9ffe-a8b3bbee9c7e","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Jul 25, 2023, 7:59:41 AM","createdDate":"Jul 25, 2023, 7:59:39 AM"}' + body: '{"subscriptionUrl":"https://integration-test-services-4ie3yr1a.auditlog-viewer.cfapps.eu12.hana.ondemand.com","subscribedTenantId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscribedSubaccountId":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subscriptionGUID":"e9bf076e-9d82-4c0e-9caa-ed2ba66b47a4","state":"SUBSCRIBED","authenticationProvider":"XSUAA","appName":"auditlog-viewer","commercialAppName":"auditlog-viewer","appId":"auditlog-viewer!t49","planName":"free","supportsPlanUpdates":false,"supportsParametersUpdates":false,"planDescription":"free plan","additionalPlanFeatures":[],"displayName":"Audit Log Viewer Service","description":"SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.","shortDescription":"View and manage audit logs.","iconBase64":"PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA1NiA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy44NDk5IDEyLjkyNjhIMTUuNDQ5OEMxMy45NTg2IDEyLjkyNjggMTIuNzQ5OCAxNC4xMzU3IDEyLjc0OTggMTUuNjI2OFY0NS4wMjY4QzEyLjc0OTggNDYuNTE4IDEzLjk1ODYgNDcuNzI2OCAxNS40NDk4IDQ3LjcyNjhIMzQuOTI2MUMzNi4wODU5IDQ3LjcyNjggMzcuMDI2MSA0OC42NjcgMzcuMDI2MSA0OS44MjY4QzM3LjAyNjEgNTAuOTg2NiAzNi4wODU5IDUxLjkyNjggMzQuOTI2MSA1MS45MjY4SDE1LjQ0OThDMTEuNjM5IDUxLjkyNjggOC41NDk4IDQ4LjgzNzYgOC41NDk4IDQ1LjAyNjhWMTUuNjI2OEM4LjU0OTggMTEuODE2MSAxMS42MzkgOC43MjY4NCAxNS40NDk4IDguNzI2ODRIMTcuODUxQzE3LjkwNzMgNi4xMjQ3NyAyMC4wMzQzIDQuMDMyNzEgMjIuNjQ5OSA0LjAzMjcxSDMyLjg0OTlDMzUuNDY1NSA0LjAzMjcxIDM3LjU5MjQgNi4xMjQ3NyAzNy42NDg3IDguNzI2ODRINDAuMDQ5OEM0My44NjA1IDguNzI2ODQgNDYuOTQ5OCAxMS44MTYxIDQ2Ljk0OTggMTUuNjI2OFYyMC41MTc3QzQ2Ljk0OTggMjEuNjc3NCA0Ni4wMDk2IDIyLjYxNzcgNDQuODQ5OCAyMi42MTc3QzQzLjY5IDIyLjYxNzcgNDIuNzQ5OCAyMS42Nzc0IDQyLjc0OTggMjAuNTE3N1YxNS42MjY4QzQyLjc0OTggMTQuMTM1NyA0MS41NDEgMTIuOTI2OCA0MC4wNDk4IDEyLjkyNjhIMzcuNjQ5OVYxMy40NzI1QzM3LjY0OTkgMTYuMTIzNCAzNS41MDA4IDE4LjI3MjUgMzIuODQ5OSAxOC4yNzI1SDIyLjY0OTlDMTkuOTk4OSAxOC4yNzI1IDE3Ljg0OTkgMTYuMTIzNCAxNy44NDk5IDEzLjQ3MjVWMTIuOTI2OFoiIGZpbGw9InVybCgjcGFpbnQwX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBkPSJNMjIuNjQ5OSA0LjAzMjcxQzIwLjIzODcgNC4wMzI3MSAxOC4yNDI4IDUuODEwNTMgMTcuOTAxNCA4LjEyNjg0QzE3Ljg3MjUgOC4zMjMyMiAxNy44NTQzIDguNTIzNDggMTcuODQ5OSA4LjcyNjg0SDE1LjQ0OThDMTEuNjM5IDguNzI2ODQgOC41NDk4IDExLjgxNjEgOC41NDk4IDE1LjYyNjhWNDUuMDI2OEM4LjU0OTggNDguODM3NiAxMS42MzkgNTEuOTI2OCAxNS40NDk4IDUxLjkyNjhIMzQuOTI2MUMzNi4wODU5IDUxLjkyNjggMzcuMDI2MSA1MC45ODY2IDM3LjAyNjEgNDkuODI2OEMzNy4wMjYxIDQ4LjY2NyAzNi4wODU5IDQ3LjcyNjggMzQuOTI2MSA0Ny43MjY4SDE1LjQ0OThDMTMuOTU4NiA0Ny43MjY4IDEyLjc0OTggNDYuNTE4IDEyLjc0OTggNDUuMDI2OFYxNS42MjY4QzEyLjc0OTggMTUuMTUyNiAxMi44NzIgMTQuNzA3IDEzLjA4NjcgMTQuMzE5N0MxMy4yNzA0IDEzLjk4ODQgMTMuNTIxOCAxMy42OTk3IDEzLjgyMjEgMTMuNDcyNUMxNC4yNzQ3IDEzLjEzIDE0LjgzODUgMTIuOTI2OCAxNS40NDk4IDEyLjkyNjhIMTcuODQ5OVYxMy40NzI1QzE3Ljg0OTkgMTMuNDkwNiAxNy44NSAxMy41MDg3IDE3Ljg1MDIgMTMuNTI2OEMxNy44NzkzIDE2LjE1MjggMjAuMDE3MSAxOC4yNzI1IDIyLjY0OTkgMTguMjcyNUgzMi44NDk5QzM1LjQ4MjcgMTguMjcyNSAzNy42MjA0IDE2LjE1MjggMzcuNjQ5NiAxMy41MjY4QzM3LjY0OTggMTMuNTA4NyAzNy42NDk5IDEzLjQ5MDYgMzcuNjQ5OSAxMy40NzI1VjEyLjkyNjhINDAuMDQ5OEM0MC42NjExIDEyLjkyNjggNDEuMjI0OSAxMy4xMyA0MS42Nzc1IDEzLjQ3MjVDNDEuOTc3OSAxMy42OTk4IDQyLjIyOTMgMTMuOTg4NSA0Mi40MTMgMTQuMzE5OUM0Mi42Mjc2IDE0LjcwNzIgNDIuNzQ5OCAxNS4xNTI3IDQyLjc0OTggMTUuNjI2OFYyMC41MTc3QzQyLjc0OTggMjEuNjc3NCA0My42OSAyMi42MTc3IDQ0Ljg0OTggMjIuNjE3N0M0Ni4wMDk2IDIyLjYxNzcgNDYuOTQ5OCAyMS42Nzc0IDQ2Ljk0OTggMjAuNTE3N1YxNS42MjY4QzQ2Ljk0OTggMTEuODE2MSA0My44NjA1IDguNzI2ODQgNDAuMDQ5OCA4LjcyNjg0SDM3LjY0ODdDMzcuNjQ0MyA4LjUyMzQ4IDM3LjYyNzMgOC4zMjMyMiAzNy41OTgzIDguMTI2ODRDMzcuMjU3IDUuODEwNTMgMzUuMjYxIDQuMDMyNzEgMzIuODQ5OSA0LjAzMjcxSDIyLjY0OTlaIiBmaWxsPSJ1cmwoI3BhaW50MV9yYWRpYWxfMjAwM18yOTA3OCkiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC4wODggMjQuMzQzNkMyNC4wODggMjIuNzgxMSAyMy4yNzU1IDIxLjk5OTkgMjEuNjUwNSAyMS45OTk5SDE4LjIxMDhDMTYuNTg1OCAyMS45OTk5IDE1Ljc3MzMgMjIuNzgxMSAxNS43NzMzIDI0LjM0MzZDMTUuNzczMyAyNS45Njg2IDE2LjU4NTggMjYuNzgxMSAxOC4yMTA4IDI2Ljc4MTFIMjEuNjUwNUMyMy4yNzU1IDI2Ljc4MTEgMjQuMDg4IDI1Ljk2ODYgMjQuMDg4IDI0LjM0MzZaTTIxLjIxNzcgMzMuMzQzNkMyMS42NTUyIDMyLjg0MzYgMjEuODczOSAzMi4yNDk5IDIxLjg3MzkgMzEuNTYyNEMyMS44NzM5IDI5Ljk5OTkgMjEuMDkyNyAyOS4yMTg2IDE5LjUzMDIgMjkuMjE4NkgxOC4yMTA4QzE2LjU4NTggMjkuMjE4NiAxNS43NzMzIDI5Ljk5OTkgMTUuNzczMyAzMS41NjI0QzE1Ljc3MzMgMzIuMjQ5OSAxNS45OTIxIDMyLjg0MzYgMTYuNDI5NiAzMy4zNDM2QzE2Ljg2NzEgMzMuNzgxMSAxNy40NjA4IDMzLjk5OTkgMTguMjEwOCAzMy45OTk5SDE5LjUzMDJDMjAuMjE3NyAzMy45OTk5IDIwLjc4MDIgMzMuNzgxMSAyMS4yMTc3IDMzLjM0MzZaTTIyLjIwOSA0MC41NDQ2QzIyLjY0NjUgNDAuMDQ0NiAyMi44NjUzIDM5LjQ1MDkgMjIuODY1MyAzOC43NjM0QzIyLjg2NTMgMzcuMjAwOSAyMi4wODQgMzYuNDE5NiAyMC41MjE1IDM2LjQxOTZIMTguMjEwOEMxNi41ODU4IDM2LjQxOTYgMTUuNzczMyAzNy4yMDA5IDE1Ljc3MzMgMzguNzYzNEMxNS43NzMzIDM5LjQ1MDkgMTUuOTkyMSA0MC4wNDQ2IDE2LjQyOTYgNDAuNTQ0NkMxNi44NjcxIDQwLjk4MjEgMTcuNDYwOCA0MS4yMDA5IDE4LjIxMDggNDEuMjAwOUgyMC41MjE1QzIxLjIwOSA0MS4yMDA5IDIxLjc3MTUgNDAuOTgyMSAyMi4yMDkgNDAuNTQ0NloiIGZpbGw9InVybCgjcGFpbnQyX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQyLjI5MTkgMzIuMzk4MUM0Mi4yOTE5IDM2LjExOTcgMzkuMjM1OCAzOS4xOTYzIDM1LjM5MTkgMzkuMTk2M0MzMS41NDggMzkuMTk2MyAyOC40OTIgMzYuMTE5NyAyOC40OTIgMzIuMzk4MUMyOC40OTIgMjguNjc2NSAzMS41NDggMjUuNTk5OSAzNS4zOTE5IDI1LjU5OTlDMzkuMjM1OCAyNS41OTk5IDQyLjI5MTkgMjguNjc2NSA0Mi4yOTE5IDMyLjM5ODFaTTQwLjYwNzYgNDEuNDI0OEMzOS4wNzEgNDIuMjk3NCAzNy4yOTAzIDQyLjc5NjMgMzUuMzkxOSA0Mi43OTYzQzI5LjU5MyA0Mi43OTYzIDI0Ljg5MiAzOC4xNDA5IDI0Ljg5MiAzMi4zOTgxQzI0Ljg5MiAyNi42NTUzIDI5LjU5MyAyMS45OTk5IDM1LjM5MTkgMjEuOTk5OUM0MS4xOTA5IDIxLjk5OTkgNDUuODkxOSAyNi42NTUzIDQ1Ljg5MTkgMzIuMzk4MUM0NS44OTE5IDM0LjUzIDQ1LjI0NDEgMzYuNTEyIDQ0LjEzMjcgMzguMTYxN0w1MS4yOTcxIDQ1LjMyNjFDNTIuMjM0MyA0Ni4yNjM0IDUyLjIzNDMgNDcuNzgzIDUxLjI5NzEgNDguNzIwMkM1MC4zNTk4IDQ5LjY1NzUgNDguODQwMiA0OS42NTc1IDQ3LjkwMyA0OC43MjAyTDQwLjYwNzYgNDEuNDI0OFoiIGZpbGw9InVybCgjcGFpbnQzX3JhZGlhbF8yMDAzXzI5MDc4KSIvPgo8ZGVmcz4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDBfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDFfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQuNTA0NiAxMS4wNjUpIHJvdGF0ZSg1MS41ODg2KSBzY2FsZSg0Mi43OTA3IDc4LjcyNTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDJfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcuMDYyNyAyNC44MTkxKSByb3RhdGUoNjYuODE2OSkgc2NhbGUoMTQuNjIyOSAxOS45OTgpIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzAxOTVGRiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxMTQ3RTkiLz4KPC9yYWRpYWxHcmFkaWVudD4KPHJhZGlhbEdyYWRpZW50IGlkPSJwYWludDNfcmFkaWFsXzIwMDNfMjkwNzgiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDg5NiAyNi4xMjUzKSByb3RhdGUoNDUuMzMxMykgc2NhbGUoMjYuODYgMjQuNDc0OCkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTM0OEZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA2MjM4RCIvPgo8L3JhZGlhbEdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo\u003d","globalAccountId":"0b50832a-69bb-473e-b2ba-f37300d545db","tenantId":"cf-eu12-auditlog-viewer","quota":1,"customerDeveloped":false,"applicationCoordinates":{"iconFormat":"image/svg+xml","inventoryIds":[{"key":"SERVICE-136"}],"serviceDescription":[{"linkCategory":"documentation","title":"Documentation","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e3baa5f1a0c64c44aac8ab3ea3d1b500.html"},{"linkCategory":"discovery_center","title":"Discovery Center","propagateTheme":"false","descriptionCategory":"documentation","linkURL":"https://discovery-center.cloud.sap/#/serviceCatalog/audit-log-service"}],"serviceCategories":[{"name":"Data and Analytics"}],"regionInformation":[{"key":"cf-eu10-canary"}],"CFService":{"name":"auditlog-viewer","plans":[{"technicalName":"free","name":"free","description":"free plan","metadata":{"bullets":[]}}]}},"incidentTrackingComponent":"BC-CP-CF-SEC-AUDITLG","modifiedDate":"Aug 1, 2023, 7:32:49 AM","createdDate":"Aug 1, 2023, 7:32:47 AM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:46 GMT + - Tue, 01 Aug 2023 07:32:54 GMT Expires: - "0" Pragma: @@ -767,33 +767,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 344925e9-7c47-4aa4-4b72-a3815f738dfb + - 1d94910a-d5e4-4151-47d7-47b79cec5439 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 447.9137ms + duration: 412.165309ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6da253c4-6247-cae4-31e1-9287af4573ac + - 0e0c659a-94cb-884a-29c3-77f8df1c3f20 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -804,18 +804,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:46 GMT + - Tue, 01 Aug 2023 07:32:54 GMT Expires: - "0" Pragma: @@ -829,33 +829,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 84c918e2-a1ff-4117-5093-c7ba6046d1db + - da5132b2-b34f-4940-4765-64dfbc05a46d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 346.3191ms + duration: 212.239277ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6ec0ca71-cd25-b308-ebf6-37465a79f061 + - 95a6c809-a60d-472e-754c-b7450110a57e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:47 GMT + - Tue, 01 Aug 2023 07:32:55 GMT Expires: - "0" Pragma: @@ -891,33 +891,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2b9ddf01-fa48-46c3-74de-0528620b2758 + - acf7677f-e6e3-4c17-5c4f-e87abad8ef9c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 399.4417ms + duration: 224.912698ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7230994b-ce82-6145-3ed6-b041a3aad8d2 + - 097cf47c-9ae4-aa8a-9821-8605e7db1cd4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -928,18 +928,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:47 GMT + - Tue, 01 Aug 2023 07:32:55 GMT Expires: - "0" Pragma: @@ -953,33 +953,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9138eac5-3707-46f0-5c14-2cd46156f9d5 + - 58064293-064d-4c24-6bd4-486872fef2af X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 406.1595ms + duration: 210.403153ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2f915210-83b0-ae1d-d933-92d4dddfc59b + - 6470ce62-f193-6829-c123-f92a5f257390 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -990,18 +990,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:48 GMT + - Tue, 01 Aug 2023 07:32:55 GMT Expires: - "0" Pragma: @@ -1015,12 +1015,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2be84c4b-bcc3-49f9-7b9d-ad4890f7cf66 + - d423a30f-81b0-435c-7ab3-32b956797807 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 412.3586ms + duration: 219.727664ms - id: 15 request: proto: HTTP/1.1 @@ -1039,11 +1039,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4535be41-04d1-3271-4dcf-dc252876d951 + - 6a3dfa02-17f5-2bee-9bc9-78278af440ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1067,7 +1067,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:48 GMT + - Tue, 01 Aug 2023 07:32:56 GMT Expires: - "0" Location: @@ -1091,12 +1091,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - 364f60ec-e457-4d2d-59b2-0d816b451b7f + - 5ab198d6-d39e-4016-4f21-d689096ff7c2 X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 200.642ms + duration: 176.164262ms - id: 16 request: proto: "" @@ -1117,11 +1117,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subaccount?unsubscribe User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4535be41-04d1-3271-4dcf-dc252876d951 + - 6a3dfa02-17f5-2bee-9bc9-78278af440ba X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1140,14 +1140,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"jobId":"11498427"}' + body: '{"jobId":"11820683"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:48 GMT + - Tue, 01 Aug 2023 07:32:56 GMT Expires: - "0" Pragma: @@ -1169,12 +1169,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0839681a-9efe-4349-432f-1f4dcad6d697 + - 576024f2-7808-480a-4b2b-909a6c2008dc X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 357.5871ms + duration: 278.567078ms - id: 17 request: proto: HTTP/1.1 @@ -1193,11 +1193,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7c1cd938-8a99-50bb-b05d-a6580a6b80e1 + - 1118eaa2-d068-07fb-a7b0-4c3abe80929c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1221,7 +1221,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 25 Jul 2023 07:59:54 GMT + - Tue, 01 Aug 2023 07:33:01 GMT Expires: - "0" Location: @@ -1245,12 +1245,12 @@ interactions: X-Id-Token: - redacted X-Vcap-Request-Id: - - deb2c3be-339a-423f-7140-1200dca8ab78 + - feb6621a-129a-43ff-4f16-988d3a2d22ee X-Xss-Protection: - "0" status: 307 Temporary Redirect code: 307 - duration: 169.6706ms + duration: 194.321231ms - id: 18 request: proto: "" @@ -1271,11 +1271,11 @@ interactions: Referer: - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/subscription?get User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7c1cd938-8a99-50bb-b05d-a6580a6b80e1 + - 1118eaa2-d068-07fb-a7b0-4c3abe80929c X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1301,7 +1301,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jul 2023 07:59:54 GMT + - Tue, 01 Aug 2023 07:33:01 GMT Expires: - "0" Pragma: @@ -1323,9 +1323,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f55d8b6f-4007-4432-6281-3a513ade5d34 + - 2faf7a24-0d19-4a3b-7c90-a70099b5da6b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 440.9846ms + duration: 402.214362ms diff --git a/internal/provider/fixtures/resource_subaccount_trust_configuration.complete.yaml b/internal/provider/fixtures/resource_subaccount_trust_configuration.complete.yaml deleted file mode 100644 index 70520edb..00000000 --- a/internal/provider/fixtures/resource_subaccount_trust_configuration.complete.yaml +++ /dev/null @@ -1,1115 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 225a437b-faa1-d257-9aaa-071a64820b56 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:41:54 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - e3dbb395-c373-4a89-7c2b-c8a123d1fd39 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 982.707794ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - f06c77a6-a971-8df8-3de6-3da3ccb6a20a - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:41:56 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - f9ccff8a-d4a9-4f70-573c-056d46a2f691 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 616.180875ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 18de599e-6fd8-5cc8-41cb-7234e482b3f0 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:41:57 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 8d16c101-8332-412f-724f-2fb463409cb4 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 487.990894ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 243 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","iasTenantUrl":"terraformint.accounts400.ondemand.com","name":"Custom IAS tenant for apps","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - eab42ba9-479c-480d-34af-d5f2bfa49d87 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?create - 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" - Date: - - Fri, 16 Jun 2023 09:41:58 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?create - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - 268018be-eed9-424d-5f75-bce87befdbfa - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 643.471189ms - - id: 4 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 243 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","iasTenantUrl":"terraformint.accounts400.ondemand.com","name":"Custom IAS tenant for apps","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?create - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - eab42ba9-479c-480d-34af-d5f2bfa49d87 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?create - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"type":"oidc1.0","config":{"emailDomain":null,"additionalConfiguration":null,"providerDescription":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","externalGroupsWhitelist":[],"attributeMappings":{"user.attribute.groups":"groups","user.attribute.remoteEntityId":"iss","user_uuid":"user_uuid"},"addShadowUserOnLogin":true,"storeCustomAttributes":true,"authUrl":null,"tokenUrl":null,"tokenKeyUrl":null,"logoutUrl":null,"tokenKey":null,"linkText":"terraformint.accounts400.ondemand.com","showLinkText":true,"clientAuthInBody":false,"skipSslValidation":false,"relyingPartyId":"07478dbd-0dbd-403a-bf9c-d4b39f2600ee","scopes":["openid","email"],"issuer":"https://terraformint.accounts400.ondemand.com","responseType":"code","userInfoUrl":null,"discoveryUrl":"https://terraformint.accounts400.ondemand.com/.well-known/openid-configuration","passwordGrantEnabled":true,"setForwardHeader":true,"platformIdp":false,"applicationIdp":true,"iasTenant":{"host":"terraformint.accounts400.ondemand.com","adminUrl":"https://terraformint.accounts400.ondemand.com/admin/#/applications/648c2e6774f1d2676f8f4a2c/trust"}},"id":"473629bd-acd3-45e3-9673-563c0dd1d099","originKey":"sap.custom","name":"Custom IAS tenant for apps","version":0,"created":1686908520850,"last_modified":1686908520850,"active":true,"identityZoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:00 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: - - "201" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - ff85f3d9-7be0-45f2-7170-faffdbec5f23 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 1.608775323s - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - c23fea34-b60b-df29-3c6f-f3d6f6f9368d - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - 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" - Date: - - Fri, 16 Jun 2023 09:42:02 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - f96a7a9d-3150-4f78-4262-2346eb6e4cc7 - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 308.81332ms - - id: 6 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - c23fea34-b60b-df29-3c6f-f3d6f6f9368d - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"name":"Custom IAS tenant for apps","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:03 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: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 07b79cb0-a578-48b8-7b89-ad1eb6a2128b - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 436.058068ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 174d5e99-de7c-0a2f-648a-79c1d1e7b1a7 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:04 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 9c6edd4a-2b1a-425c-532c-c653420146f4 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 522.288823ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - ac84f853-3a0b-48e8-cd70-562933a9a7bd - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:05 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - a0787bef-766b-4ebc-51f9-d821f5e09224 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 392.593502ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - a612dd85-402f-e8a3-71f1-6abae5a53495 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - 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" - Date: - - Fri, 16 Jun 2023 09:42:06 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - 924d1c0b-871b-4f12-608d-dfb4811fb2d0 - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 226.780372ms - - id: 10 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - a612dd85-402f-e8a3-71f1-6abae5a53495 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"name":"Custom IAS tenant for apps","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:07 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: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - ae9f1c32-846a-455c-5a8d-6b5b2b2a3831 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 321.878672ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 47d38e18-39ac-2d5d-7b3b-9d885db51dd6 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:08 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - f65cc229-e8d0-411d-4687-b8862e8f340b - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 594.138525ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 57132c86-1bcc-ee37-2271-37237d84e22d - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42:09 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 59d27b3a-f3d8-4e8c-5837-be54d9372f0f - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 550.339488ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 2a8331e1-5562-90a0-8f3b-f91866d9b2c6 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - ed12f0b1-d1fa-40a6-7d61-354597f9cf7a - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 507.851052ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"confirm":"true","originKey":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 77156be2-acdf-fce3-3e5d-9417ed6316d6 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?delete - 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" - Date: - - Fri, 16 Jun 2023 09:42:11 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?delete - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - b68fb181-c621-4c50-64b1-8a8a322b35fb - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 223.681417ms - - id: 15 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"confirm":"true","originKey":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?delete - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 77156be2-acdf-fce3-3e5d-9417ed6316d6 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?delete - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"type":"oidc1.0","config":{"emailDomain":null,"additionalConfiguration":null,"providerDescription":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","externalGroupsWhitelist":[],"attributeMappings":{"user.attribute.groups":"groups","user.attribute.remoteEntityId":"iss","user_uuid":"user_uuid"},"addShadowUserOnLogin":true,"storeCustomAttributes":true,"authUrl":"https://terraformint.accounts400.ondemand.com/oauth2/authorize","tokenUrl":"https://terraformint.accounts400.ondemand.com/oauth2/token","tokenKeyUrl":"https://terraformint.accounts400.ondemand.com/oauth2/certs","logoutUrl":null,"tokenKey":null,"linkText":"terraformint.accounts400.ondemand.com","showLinkText":true,"clientAuthInBody":false,"skipSslValidation":false,"relyingPartyId":"07478dbd-0dbd-403a-bf9c-d4b39f2600ee","scopes":["openid","email"],"issuer":"https://terraformint.accounts400.ondemand.com","responseType":"code","userInfoUrl":"https://terraformint.accounts400.ondemand.com/oauth2/userinfo","discoveryUrl":"https://terraformint.accounts400.ondemand.com/.well-known/openid-configuration","passwordGrantEnabled":true,"setForwardHeader":true,"platformIdp":false,"applicationIdp":true},"id":"473629bd-acd3-45e3-9673-563c0dd1d099","originKey":"sap.custom","name":"Custom IAS tenant for apps","version":0,"created":1686908520850,"last_modified":1686908520850,"active":true,"identityZoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 09:42: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 - X-Cpcli-Backend-Status: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 0b544931-291f-4067-4aa9-589f22eb01c8 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 1.451857545s diff --git a/internal/provider/fixtures/resource_subaccount_trust_configuration.minimal.yaml b/internal/provider/fixtures/resource_subaccount_trust_configuration.minimal.yaml deleted file mode 100644 index 784c1489..00000000 --- a/internal/provider/fixtures/resource_subaccount_trust_configuration.minimal.yaml +++ /dev/null @@ -1,1115 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - c472b13f-97ba-7274-655b-5ea84c53376e - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 26e80fb3-dbbc-43d0-515d-16ccadf3a2dd - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 942.334852ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - b97d804b-0460-d1ae-11a5-4425240aaa54 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - b70cadac-cf91-4aa1-4c44-42c5accfca64 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 517.398689ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 60de52e0-02a5-0b4e-4343-461bd12c728d - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - b2e98dd6-a159-48b7-55ae-a53c411645f9 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 649.970139ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 125 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"iasTenantUrl":"terraformint.accounts400.ondemand.com","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 67ee4322-df8d-558e-c0f5-da68b71a9938 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?create - 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" - Date: - - Fri, 16 Jun 2023 08:00:30 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?create - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - 7077454d-e597-4943-7378-cde941515d27 - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 395.11624ms - - id: 4 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 125 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"iasTenantUrl":"terraformint.accounts400.ondemand.com","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?create - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 67ee4322-df8d-558e-c0f5-da68b71a9938 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?create - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"type":"oidc1.0","config":{"emailDomain":null,"additionalConfiguration":null,"providerDescription":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","externalGroupsWhitelist":[],"attributeMappings":{"user.attribute.groups":"groups","user.attribute.remoteEntityId":"iss","user_uuid":"user_uuid"},"addShadowUserOnLogin":true,"storeCustomAttributes":true,"authUrl":null,"tokenUrl":null,"tokenKeyUrl":null,"logoutUrl":null,"tokenKey":null,"linkText":"terraformint.accounts400.ondemand.com","showLinkText":true,"clientAuthInBody":false,"skipSslValidation":false,"relyingPartyId":"90d54137-4021-4814-a8cd-a15bd8641345","scopes":["openid","email"],"issuer":"https://terraformint.accounts400.ondemand.com","responseType":"code","userInfoUrl":null,"discoveryUrl":"https://terraformint.accounts400.ondemand.com/.well-known/openid-configuration","passwordGrantEnabled":true,"setForwardHeader":true,"platformIdp":false,"applicationIdp":true,"iasTenant":{"host":"terraformint.accounts400.ondemand.com","adminUrl":"https://terraformint.accounts400.ondemand.com/admin/#/applications/648c169f13968225a4a5ab3d/trust"}},"id":"cac9b70d-5de9-4b8a-bde7-97dbc8fca467","originKey":"sap.custom","name":"Custom IAS tenant","version":0,"created":1686902432778,"last_modified":1686902432778,"active":true,"identityZoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Backend-Mediatype: - - application/json - X-Cpcli-Backend-Status: - - "201" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 153428e7-abd3-4db6-510a-47de82d5f867 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 1.72485144s - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 608d9ce1-942e-2bcf-b0aa-fd1971656f76 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - 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" - Date: - - Fri, 16 Jun 2023 08:00:34 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - 5d0908a6-f0a5-46db-77fd-e2ce44c3d2ff - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 313.539252ms - - id: 6 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 608d9ce1-942e-2bcf-b0aa-fd1971656f76 - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00:35 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: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 0cca5426-1593-4dc0-7a45-e1f21043dc77 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 349.730054ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 6291c41b-7ab7-ef2d-83cf-340217bc315c - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 59bda597-f5ff-4fe5-65df-58bfe2d5588c - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 420.595109ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 410fc34b-5405-05b4-7ead-02dd578fe84e - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00:37 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 60af2dec-92f4-4696-75eb-a58a71a692db - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 396.146966ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - d6e7b1e3-fc54-5179-730c-0a1b0707640f - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - 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" - Date: - - Fri, 16 Jun 2023 08:00:38 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - 8509bfe8-cb79-4263-5281-13510baf5493 - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 168.309816ms - - id: 10 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"origin":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?get - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - d6e7b1e3-fc54-5179-730c-0a1b0707640f - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?get - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"name":"Custom IAS tenant","originKey":"sap.custom","typeOfTrust":"Application","status":"active","description":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","identityProvider":"terraformint.accounts400.ondemand.com","domain":null,"linkTextForUserLogon":"terraformint.accounts400.ondemand.com","availableForUserLogon":"true","createShadowUsersDuringLogon":"true","sapBtpCli":null,"protocol":"OpenID Connect","readOnly":false}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00:38 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: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 44567145-ba24-4a20-7b0b-25b524e31d1d - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 350.703024ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 0acdc812-355d-49f3-5c4e-b6c03fbd8533 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - cb065ea4-e914-42cb-5f81-66b2e94a5c05 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 545.313188ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 055abc35-0dcc-4570-f02e-73a0ee74b774 - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00:40 GMT - Expires: - - "0" - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 64bdf483-32f2-43e7-48a0-945db25af9bc - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 489.778921ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - d46da9aa-9f46-9b9c-e822-58b599f1fc4f - X-Cpcli-Format: - - json - url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 57782fa2-6ce2-4bbb-66b5-f108d7d4a275 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 436.959172ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: cpcli.cf.sap.hana.ondemand.com - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"confirm":"true","originKey":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 3244609d-bb6d-4d65-0bc2-2c4e94a2c33c - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?delete - 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" - Date: - - Fri, 16 Jun 2023 08:00:42 GMT - Expires: - - "0" - Location: - - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?delete - Pragma: - - no-cache - Referrer-Policy: - - no-referrer - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload; - X-Content-Type-Options: - - nosniff - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Frame-Options: - - DENY - X-Id-Token: - - redacted - X-Vcap-Request-Id: - - dcc0066f-b4b8-4ffd-4fd1-7614ac5c88d5 - X-Xss-Protection: - - "0" - status: 307 Temporary Redirect - code: 307 - duration: 246.752592ms - - id: 15 - request: - proto: "" - proto_major: 0 - proto_minor: 0 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: "" - remote_addr: "" - request_uri: "" - body: | - {"paramValues":{"confirm":"true","originKey":"sap.custom","subaccount":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}} - form: {} - headers: - Content-Type: - - application/json - Referer: - - https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/trust?delete - User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev - X-Correlationid: - - 3244609d-bb6d-4d65-0bc2-2c4e94a2c33c - X-Cpcli-Customidp: - - "" - X-Cpcli-Format: - - json - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Subdomain: - - integration-test-acc-static-b8xxozer - X-Id-Token: - - redacted - url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/security/trust?delete - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"type":"oidc1.0","config":{"emailDomain":null,"additionalConfiguration":null,"providerDescription":"IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)","externalGroupsWhitelist":[],"attributeMappings":{"user.attribute.groups":"groups","user.attribute.remoteEntityId":"iss","user_uuid":"user_uuid"},"addShadowUserOnLogin":true,"storeCustomAttributes":true,"authUrl":"https://terraformint.accounts400.ondemand.com/oauth2/authorize","tokenUrl":"https://terraformint.accounts400.ondemand.com/oauth2/token","tokenKeyUrl":"https://terraformint.accounts400.ondemand.com/oauth2/certs","logoutUrl":null,"tokenKey":null,"linkText":"terraformint.accounts400.ondemand.com","showLinkText":true,"clientAuthInBody":false,"skipSslValidation":false,"relyingPartyId":"90d54137-4021-4814-a8cd-a15bd8641345","scopes":["openid","email"],"issuer":"https://terraformint.accounts400.ondemand.com","responseType":"code","userInfoUrl":"https://terraformint.accounts400.ondemand.com/oauth2/userinfo","discoveryUrl":"https://terraformint.accounts400.ondemand.com/.well-known/openid-configuration","passwordGrantEnabled":true,"setForwardHeader":true,"platformIdp":false,"applicationIdp":true},"id":"cac9b70d-5de9-4b8a-bde7-97dbc8fca467","originKey":"sap.custom","name":"Custom IAS tenant","version":0,"created":1686902432778,"last_modified":1686902432778,"active":true,"identityZoneId":"ef23ace8-6ade-4d78-9c1f-8df729548bbf"}' - headers: - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Content-Type: - - application/json - Date: - - Fri, 16 Jun 2023 08:00: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 - X-Cpcli-Backend-Status: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted - X-Frame-Options: - - DENY - X-Vcap-Request-Id: - - 833e646d-d122-48f9-5151-88cd6289e575 - X-Xss-Protection: - - "0" - status: 200 OK - code: 200 - duration: 1.395967643s diff --git a/internal/provider/fixtures/resource_subaccount_used_for_production.yaml b/internal/provider/fixtures/resource_subaccount_used_for_production.yaml index 68cfc289..5aae18e3 100644 --- a/internal/provider/fixtures/resource_subaccount_used_for_production.yaml +++ b/internal/provider/fixtures/resource_subaccount_used_for_production.yaml @@ -6,22 +6,22 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cb79b6e7-207b-9228-8743-6fc159ee9ca8 + - 27b39bbf-b668-61cb-3383-4645a8d63294 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -32,18 +32,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:51 GMT + - Tue, 01 Aug 2023 12:00:49 GMT Expires: - "0" Pragma: @@ -57,33 +57,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b6ba753d-f56c-43f6-44e7-ca409b4e60ae + - 74722d43-0267-4737-65bd-aa605ee9b57d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 871.1409ms + duration: 228.595348ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5ed15af1-2dc2-d505-7839-1973cb97171f + - 23d95558-328f-9a8f-e5c5-cefa2fc04903 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -94,18 +94,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:51 GMT + - Tue, 01 Aug 2023 12:00:50 GMT Expires: - "0" Pragma: @@ -119,33 +119,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 039d02a3-5e09-4226-6314-ab178c51baf2 + - c1e67f16-5994-470c-568a-82220b3874ba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 378.8011ms + duration: 342.751014ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - cfe02182-b7b7-60b1-ed6f-61d8961a9e87 + - 798c3608-f0a3-319b-fe02-65c51617803f X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -156,18 +156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:52 GMT + - Tue, 01 Aug 2023 12:00:50 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9984a3ea-bc42-4704-6e17-de5a66ab1e34 + - 6834f23d-6c58-425c-6fb6-ed6e3a9b5a73 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 406.0768ms + duration: 417.935706ms - id: 3 request: proto: HTTP/1.1 @@ -205,11 +205,11 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 83aceb96-960e-5d78-d7a1-f1482fbaa9f7 + - fea5361d-4144-41f7-48f8-66dfc4a16bef X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:40:52 AM","jobId":"2892617"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:51 PM","jobId":"2958368"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:52 GMT + - Tue, 01 Aug 2023 12:00:51 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5219c6b4-0b2f-40c3-7b7d-ceda0d5a3109 + - 3eb1cdd5-c024-4eff-6a1c-69ae7c0e808d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 467.7025ms + duration: 375.525049ms - id: 4 request: proto: HTTP/1.1 @@ -273,17 +273,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 19f81e68-b569-3b77-881a-8ecc93d7f2da + - 36aa1b51-7994-2900-a214-8fbd912a78fa X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:40:53 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:52 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:40:57 GMT + - Tue, 01 Aug 2023 12:00:56 GMT Expires: - "0" Pragma: @@ -329,12 +329,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fe48b3ef-b7d7-4945-7103-2c02b90784dd + - 0f39891a-8b54-4176-6fa3-6909e655adb8 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 209.71ms + duration: 229.275957ms - id: 5 request: proto: HTTP/1.1 @@ -347,17 +347,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - abb5dbc9-63bd-3db1-7a2d-64e3b6e802ba + - 8e614827-2090-f80a-0e9d-6fd1e4fc94d3 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -374,14 +374,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:40:53 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:00:52 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:03 GMT + - Tue, 01 Aug 2023 12:01:01 GMT Expires: - "0" Pragma: @@ -403,12 +403,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 66cd7b58-758e-4cdc-6b4b-daa1dd6a9258 + - 1cda596b-bfaf-4ed0-6632-76fcd3180765 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 326.5698ms + duration: 423.890095ms - id: 6 request: proto: HTTP/1.1 @@ -421,17 +421,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0a824f42-15a6-f997-c866-69df9302c69a + - 3d4e7d2e-1676-5ef4-c944-c21b35e7cfa9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -448,14 +448,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:09 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:13 GMT + - Tue, 01 Aug 2023 12:01:12 GMT Expires: - "0" Pragma: @@ -477,33 +477,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0097fad1-420e-4010-43a8-45bee756466e + - 94630b31-61fb-4a9c-5533-32e3e4a9304f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 220.9922ms + duration: 252.758828ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 1891684f-84fb-280e-c64a-67f2b9db7578 + - fc82d289-2769-dbc3-1190-c6693ba53e78 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -514,18 +514,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:14 GMT + - Tue, 01 Aug 2023 12:01:12 GMT Expires: - "0" Pragma: @@ -539,33 +539,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - d32f4b36-c7d6-4433-5ec0-fd758e3c4046 + - 1c1f68d3-8d66-46dc-7ccd-ab74483415d4 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 471.4883ms + duration: 337.923392ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 2568442d-9d14-0b87-949c-76791e4cd8d1 + - de18de12-fc01-66ab-8d32-9ec1e1d29069 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -576,18 +576,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:14 GMT + - Tue, 01 Aug 2023 12:01:13 GMT Expires: - "0" Pragma: @@ -601,12 +601,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 006c7bc0-d79a-4fbd-79ef-e45909c21a19 + - b08abd76-cbd6-426a-534b-9a280c691775 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 433.054ms + duration: 322.154758ms - id: 9 request: proto: HTTP/1.1 @@ -619,17 +619,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5fc34413-05c9-9ac8-ea17-e31a29beb0da + - f6ced2f7-53ee-febe-b085-cc9c34470cc0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -646,14 +646,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:09 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:14 GMT + - Tue, 01 Aug 2023 12:01:13 GMT Expires: - "0" Pragma: @@ -675,33 +675,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 043311a9-63aa-4447-62c6-4fd374b20264 + - 87b2f7f9-2431-4751-5cfb-7626bd490125 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 196.8917ms + duration: 228.251692ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7c08365e-cb61-f2e8-b6b1-c254b739a5db + - 0211e2c2-c88d-b566-14b8-76420a9f4564 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -712,18 +712,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:15 GMT + - Tue, 01 Aug 2023 12:01:13 GMT Expires: - "0" Pragma: @@ -737,33 +737,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 541d5373-8666-4c27-560c-7db072fe100c + - ea34770b-9235-46c3-5b82-6dc1a9e6a92e X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 417.3324ms + duration: 300.074497ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 152d97e0-dbde-b4e2-2e3e-237061d42d71 + - 6183ebca-2bfe-5706-64d0-7bf3a7c63818 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -774,18 +774,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:15 GMT + - Tue, 01 Aug 2023 12:01:14 GMT Expires: - "0" Pragma: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - deaab9b4-2073-4370-7256-acd9dc955efe + - ac1806ca-2836-4ef0-4c24-3c953942c917 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 384.6122ms + duration: 380.077279ms - id: 12 request: proto: HTTP/1.1 @@ -817,17 +817,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6a8a80ae-546e-7faf-5f8e-94369a917074 + - e7ce32bb-eeb4-8564-19fd-ee9fec1f2dbb X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -844,14 +844,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:09 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:09 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:15 GMT + - Tue, 01 Aug 2023 12:01:14 GMT Expires: - "0" Pragma: @@ -873,33 +873,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 28d6ba44-3334-4c4b-7eea-61c24c768508 + - 8b4d6044-20de-4223-55fb-e2c6c6d249df X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 196.2935ms + duration: 173.083468ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a9efbe8b-dec9-f244-df7b-e31f350fd79d + - 723964ad-eb14-c8b7-35d6-eb6c7a0131ac X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -910,18 +910,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:16 GMT + - Tue, 01 Aug 2023 12:01:15 GMT Expires: - "0" Pragma: @@ -935,33 +935,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 5eac7c80-2169-4b7c-5fe9-06d707ea9234 + - 81037914-970b-4b95-777a-cdb094ee462f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 383.7815ms + duration: 322.385955ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - a7544a4d-c9b7-d4e4-1abb-ebeddef5c692 + - 222d5ce5-bc7e-89a9-897f-a1cf409a7c06 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -972,18 +972,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:16 GMT + - Tue, 01 Aug 2023 12:01:15 GMT Expires: - "0" Pragma: @@ -997,12 +997,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a54bc1d2-6caa-4f32-56fa-6a6e16408eec + - 3e3e533d-e71b-4576-5c53-9485e79cb829 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 394.9589ms + duration: 305.227411ms - id: 15 request: proto: HTTP/1.1 @@ -1015,17 +1015,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","usedForProduction":"true"}} + {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","usedForProduction":"true"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 99915f94-9cb3-2714-28b6-18e0cd6a1986 + - a31be42d-975d-7d7f-3cf6-debe5e4fb555 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1042,14 +1042,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:17 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:15 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:17 GMT + - Tue, 01 Aug 2023 12:01:16 GMT Expires: - "0" Pragma: @@ -1071,12 +1071,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0c681d85-7b65-4b77-6c78-1ee0b8fb36ff + - e072a726-0d88-46b8-7619-861d53a88744 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 300.1496ms + duration: 579.157561ms - id: 16 request: proto: HTTP/1.1 @@ -1089,17 +1089,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 23c4ef47-ee3a-d21b-f646-f5bfc5a50aaf + - 5f07b068-a45a-58d6-b8ed-1b1d8da0e432 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1116,14 +1116,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:17 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:15 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:22 GMT + - Tue, 01 Aug 2023 12:01:21 GMT Expires: - "0" Pragma: @@ -1145,33 +1145,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0bfc8be5-fb64-4217-5edd-c96a63fe2e38 + - c4863a62-805d-4b69-7a8a-cb246bb5b318 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 193.4857ms + duration: 224.085984ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - fa19909d-b07a-5d99-80bc-1721d208f30f + - 0e67f1a4-5988-958a-2fcb-e6674bb28441 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1182,18 +1182,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:22 GMT + - Tue, 01 Aug 2023 12:01:22 GMT Expires: - "0" Pragma: @@ -1207,33 +1207,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2b888df9-1cb3-49aa-427b-a9ea9390721f + - 86bf2b5b-218a-4b37-7dc0-5cc0caaee885 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 333.6014ms + duration: 439.475269ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 361a9c8b-bd2d-a4c4-43a9-4330a96bf7b3 + - 618ca46e-a489-4edb-f125-3ad1e723ffb9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1244,18 +1244,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:23 GMT + - Tue, 01 Aug 2023 12:01:22 GMT Expires: - "0" Pragma: @@ -1269,12 +1269,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2f10c5fc-044f-4c47-7459-792ab83aaf32 + - db43f2fe-2bb8-488e-7eb0-d059a36c9bef X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 390.3732ms + duration: 302.297607ms - id: 19 request: proto: HTTP/1.1 @@ -1287,17 +1287,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 58e25618-4ab4-8f08-f410-c5fae8f762a5 + - 6fa1c410-7828-6e94-4ee7-a53255f50eb5 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1314,14 +1314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:17 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:15 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:23 GMT + - Tue, 01 Aug 2023 12:01:22 GMT Expires: - "0" Pragma: @@ -1343,33 +1343,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 401d8089-978f-472a-5fd7-aa22e4418fac + - 8f1d6ee0-6742-453b-4ed3-d789ed76a4ca X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 214.4632ms + duration: 208.80725ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 5ab10639-814a-f55e-ebb5-0b5f85adb447 + - bb8ead2a-cc70-5fcd-d021-cef82c2176fa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1380,18 +1380,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:23 GMT + - Tue, 01 Aug 2023 12:01:23 GMT Expires: - "0" Pragma: @@ -1405,33 +1405,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b1e8a5ec-6366-450c-7991-19f5cd289009 + - bb75d603-ae1b-45c2-6293-b8f0467686e0 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 439.0884ms + duration: 478.23331ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 0a10c299-16b5-2887-7b20-f2b8b8c72d19 + - 39c454e9-52d4-a958-1c83-281099d8de90 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1442,18 +1442,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:24 GMT + - Tue, 01 Aug 2023 12:01:23 GMT Expires: - "0" Pragma: @@ -1467,12 +1467,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b0646c46-3936-4480-6833-59269b1c8d60 + - f53e01f3-254b-423c-5ce2-059d830f7ae7 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 340.8097ms + duration: 259.675826ms - id: 22 request: proto: HTTP/1.1 @@ -1485,17 +1485,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - ecd768f1-430f-baa9-fa08-eee4579834cb + - 12448bc7-2d77-6b7b-1a96-20d09ddddfc0 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1512,14 +1512,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:17 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:15 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:24 GMT + - Tue, 01 Aug 2023 12:01:24 GMT Expires: - "0" Pragma: @@ -1541,33 +1541,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - f96acc8a-0a56-4d72-79fa-2f8dbb46bf3a + - f69f57c5-9c12-43d9-4334-63f4ac240320 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 173.1497ms + duration: 209.576627ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - dd74f393-fc57-9390-eeff-ed459ea7e23a + - 14f9f168-9b97-c649-435e-8f65e11a6efc X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1578,18 +1578,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:25 GMT + - Tue, 01 Aug 2023 12:01:24 GMT Expires: - "0" Pragma: @@ -1603,33 +1603,33 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - cd1075d0-71d4-4807-6f7a-2cea988234c6 + - 55b200ae-c29a-4b24-6268-b5d066e01fb2 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 400.4363ms + duration: 392.409657ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 118 + content_length: 127 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} + {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 3fd071d3-9bb1-17c4-b2b0-5326ae083ad0 + - 0690810e-546b-d2cf-1e63-d075895739e9 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -1640,18 +1640,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 149 + content_length: 162 uncompressed: false - body: '{"issuer":"accounts.sap.com","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' + body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Length: - - "149" + - "162" Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:25 GMT + - Tue, 01 Aug 2023 12:01:25 GMT Expires: - "0" Pragma: @@ -1665,12 +1665,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0e1af359-89d2-4aa1-52a3-068789c211f1 + - c7dff2ac-1bd8-4c48-533c-a4daf95b12ba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 358.9518ms + duration: 323.06691ms - id: 25 request: proto: HTTP/1.1 @@ -1683,17 +1683,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","forceDelete":"true","subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"confirm":"true","forceDelete":"true","subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 7cbd5e3c-2beb-b4d9-9d4b-ad24ade80002 + - 667590f3-bcb5-eb83-dcd6-8387867c3f13 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1710,14 +1710,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:17 AM","jobId":"2892638"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:15 PM","jobId":"2958376"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:25 GMT + - Tue, 01 Aug 2023 12:01:25 GMT Expires: - "0" Pragma: @@ -1739,12 +1739,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 96cb5aeb-9737-4d55-45a9-34b1fd9294d1 + - 3bdc5318-dd87-427b-67c6-6dec1668fb49 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 229.3361ms + duration: 226.361937ms - id: 26 request: proto: HTTP/1.1 @@ -1757,17 +1757,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 6ce7414e-9aa8-8556-59c5-d83e9c49d615 + - b6f7d970-b052-5ad4-a6a3-25840e52b327 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1784,14 +1784,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:26 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:26 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:30 GMT + - Tue, 01 Aug 2023 12:01:30 GMT Expires: - "0" Pragma: @@ -1813,12 +1813,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - bb322d81-256d-4710-5c69-17d46717f245 + - d03837e9-0dae-4e84-635f-fc0c0f783e00 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 187.4992ms + duration: 225.155756ms - id: 27 request: proto: HTTP/1.1 @@ -1831,17 +1831,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 71ff5e82-034c-2faf-cf17-5d526eec28fa + - e69d8cfe-eb06-39a1-0133-ffc927602bbc X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1858,14 +1858,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:26 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:26 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:36 GMT + - Tue, 01 Aug 2023 12:01:35 GMT Expires: - "0" Pragma: @@ -1887,12 +1887,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9743bf92-b222-452e-7668-34b595828034 + - 9a7ae773-f7f3-41a4-63b1-f1f376e0ce57 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 242.2082ms + duration: 278.807948ms - id: 28 request: proto: HTTP/1.1 @@ -1905,17 +1905,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - 4ee78430-1c66-72ed-e779-319a3cc59d85 + - 03c8f474-b840-8745-ad55-41e3d89ee4a9 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -1932,14 +1932,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","technicalName":"210b17fc-3f89-4575-83d1-8636a9f0a8aa","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":"Deleting subaccount.","createdDate":"Jul 21, 2023, 10:40:52 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 21, 2023, 10:41:26 AM"}' + body: '{"guid":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","technicalName":"4acf77c3-9fd0-4d95-a67d-a943c236daf3","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":"Deleting subaccount.","createdDate":"Aug 1, 2023, 12:00:51 PM","createdBy":"john.doe@int.test","modifiedDate":"Aug 1, 2023, 12:01:26 PM"}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:46 GMT + - Tue, 01 Aug 2023 12:01:46 GMT Expires: - "0" Pragma: @@ -1961,12 +1961,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b1d4ff8b-4ee2-4137-5b8c-7ed51bc3c72c + - b7834ab3-7b30-41f0-443c-c6a924fab836 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 240.4993ms + duration: 198.595002ms - id: 29 request: proto: HTTP/1.1 @@ -1979,17 +1979,17 @@ interactions: remote_addr: "" request_uri: "" body: | - {"paramValues":{"subaccount":"210b17fc-3f89-4575-83d1-8636a9f0a8aa"}} + {"paramValues":{"subaccount":"4acf77c3-9fd0-4d95-a67d-a943c236daf3"}} form: {} headers: Content-Type: - application/json User-Agent: - - Terraform/1.5.2 terraform-provider-btp/dev + - Terraform/1.5.0 terraform-provider-btp/dev X-Correlationid: - - e05d8313-2511-fe46-861d-a68723df4606 + - da0e5bbe-bc13-5123-5908-a68789aa35d4 X-Cpcli-Customidp: - - "" + - identityProvider X-Cpcli-Format: - json X-Cpcli-Refreshtoken: @@ -2013,7 +2013,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 21 Jul 2023 10:41:56 GMT + - Tue, 01 Aug 2023 12:01:56 GMT Expires: - "0" Pragma: @@ -2035,9 +2035,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 37c385b0-195e-4df8-7d69-a3b0b86deaed + - 5301a758-08fc-41c8-4054-f11c338fb32c X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 264.0581ms + duration: 235.614638ms diff --git a/internal/provider/provider_test.go b/internal/provider/provider_test.go index bf1714c9..9dbc1c1f 100644 --- a/internal/provider/provider_test.go +++ b/internal/provider/provider_test.go @@ -7,6 +7,7 @@ import ( "net/http" "os" "regexp" + "strconv" "strings" "testing" "unicode" @@ -30,21 +31,43 @@ var ( regexpValidUUID = uuidvalidator.UuidRegexp ) -func hclProvider() string { - return hclProviderWithCLIServerURL("https://cpcli.cf.sap.hana.ondemand.com") +type TestUser struct { + Username string + Password string + Idp string + Issuer string + Firstname string + Lastname string } -func hclProviderWithCLIServerURL(cliServerURL string) string { +var redactedTestUser = TestUser{ + Username: "john.doe@int.test", + Password: "testUserPassword", + Idp: "identityProvider", + Issuer: "identity.provider.test", + Firstname: "John", + Lastname: "Doe", +} + +func hclProviderFor(user TestUser) string { + return hclProvider("https://cpcli.cf.sap.hana.ondemand.com", user) +} + +func hclProviderForCLIServerAt(cliServerURL string) string { + return hclProvider(cliServerURL, redactedTestUser) +} + +func hclProvider(cliServerURL string, user TestUser) string { // TODO replace credentials with serviceuser credentials return fmt.Sprintf(` provider "btp" { cli_server_url = "%s" globalaccount = "terraformintcanary" - username = "john.doe@int.test" - password = "redacted" - idp = "" + username = "%s" + password = "%s" + idp = "%s" } - `, cliServerURL) + `, cliServerURL, user.Username, user.Password, user.Idp) } func getProviders(httpClient *http.Client) map[string]func() (tfprotov6.ProviderServer, error) { @@ -55,55 +78,107 @@ func getProviders(httpClient *http.Client) map[string]func() (tfprotov6.Provider } } -func setupVCR(t *testing.T, cassetteName string) *recorder.Recorder { +func setupVCR(t *testing.T, cassetteName string) (*recorder.Recorder, TestUser) { t.Helper() + mode := recorder.ModeRecordOnce + if force, _ := strconv.ParseBool(os.Getenv("TEST_FORCE_REC")); force { + mode = recorder.ModeRecordOnly + } + rec, err := recorder.NewWithOptions(&recorder.Options{ CassetteName: cassetteName, - Mode: recorder.ModeRecordOnce, + Mode: mode, SkipRequestLatency: true, RealTransport: http.DefaultTransport, }) + user := redactedTestUser + if rec.IsRecording() { + user.Username = os.Getenv("BTP_USERNAME") + user.Password = os.Getenv("BTP_PASSWORD") + if len(user.Username) == 0 || len(user.Password) == 0 { + t.Fatal("Env vars BTP_USERNAME and BTP_PASSWORD are required when recording test fixtures") + } + + user.Idp = os.Getenv("BTP_IDP") + if len(user.Idp) == 0 { + user.Issuer = "accounts.sap.com" + } else if strings.Contains(user.Idp, ".") { + user.Issuer = user.Idp + } else { + // TODO: currently short notation (idp = tenant id) only supported with this default domain (e.g. canary) + user.Issuer = user.Idp + ".accounts400.ondemand.com" + } + user.Firstname, user.Lastname = getNameFromEmail(user.Username) + } + if err != nil { t.Fatal() } rec.SetMatcher(cliServerRequestMatcher(t)) + rec.AddHook(hookRedactIntegrationUserCredentials(user), recorder.BeforeSaveHook) + rec.AddHook(hookRedactTokensInHeader(), recorder.BeforeSaveHook) - hookRedactIntegrationUserCredentials := func(i *cassette.Interaction) error { - intUser := os.Getenv("BTP_USERNAME") - intUserPwd := os.Getenv("BTP_PASSWORD") - intUserIdp := os.Getenv("BTP_IDP") + return rec, user +} - firstName, lastName := getNameFromEmail(intUser) +func cliServerRequestMatcher(t *testing.T) func(r *http.Request, i cassette.Request) bool { + return func(r *http.Request, i cassette.Request) bool { + if r.Method != i.Method || r.URL.String() != i.URL { + return false + } + + subdomainHeaderKey := http.CanonicalHeaderKey(btpcli.HeaderCLISubdomain) + if r.Header.Get(subdomainHeaderKey) != i.Headers.Get(subdomainHeaderKey) { + return false + } + + idpHeaderKey := http.CanonicalHeaderKey(btpcli.HeaderCLICustomIDP) + if r.Header.Get(idpHeaderKey) != i.Headers.Get(idpHeaderKey) { + return false + } + + bytes, err := io.ReadAll(r.Body) + if err != nil { + t.Fatal("Unable to read body from request") + } + requestBody := string(bytes) + return requestBody == i.Body + } +} +func hookRedactIntegrationUserCredentials(user TestUser) func(i *cassette.Interaction) error { + return func(i *cassette.Interaction) error { if strings.Contains(i.Request.URL, "/login/") { - i.Request.Body = strings.ReplaceAll(i.Request.Body, intUserPwd, "redacted") - // TODO #277 the custom idp and issuer values should be redacted to some special value - // for now the custom idp is replaced by the empty string and the issuer by "accounts.sap.com" to keep - // existing fixtures working that were recorded without selecting a custom idp during login - i.Request.Body = strings.ReplaceAll(i.Request.Body, "\"customIdp\":\""+intUserIdp+"\"", "\"customIdp\":\"\"") - i.Response.Body = strings.ReplaceAll(i.Response.Body, "\"issuer\":\""+intUserIdp+"\"", "\"issuer\":\"accounts.sap.com\"") - i.Response.Body = strings.ReplaceAll(i.Response.Body, "\"issuer\":\""+intUserIdp+".accounts400.ondemand.com\"", "\"issuer\":\"accounts.sap.com\"") + i.Request.Body = strings.ReplaceAll(i.Request.Body, user.Password, redactedTestUser.Password) + reCustomIdp := regexp.MustCompile(`"customIdp":"(.*?)"`) + i.Request.Body = reCustomIdp.ReplaceAllString(i.Request.Body, `"customIdp":"`+redactedTestUser.Idp+`"`) + reIssuer := regexp.MustCompile(`"issuer":"(.*?)"`) + i.Response.Body = reIssuer.ReplaceAllString(i.Response.Body, `"issuer":"`+redactedTestUser.Issuer+`"`) } if _, exists := i.Request.Headers[btpcli.HeaderCLICustomIDP]; exists { - // TODO #277 the custom idp header value should be redacted to some special value - // for now the header is replaced by the empty string to keep existing fixtures working that were - // recorded without selecting a custom idp during login - i.Request.Headers.Set(btpcli.HeaderCLICustomIDP, "") + i.Request.Headers.Set(btpcli.HeaderCLICustomIDP, redactedTestUser.Idp) } - i.Request.Body = strings.ReplaceAll(i.Request.Body, intUser, "john.doe@int.test") - i.Response.Body = strings.ReplaceAll(i.Response.Body, intUser, "john.doe@int.test") + reUserSAP := regexp.MustCompile(`[a-zA-Z0-9.!#$%&'*+/=?^_ \x60{|}~-]+@sap\.com`) + i.Request.Body = reUserSAP.ReplaceAllString(i.Request.Body, redactedTestUser.Username) + i.Response.Body = strings.ReplaceAll(i.Response.Body, user.Username, redactedTestUser.Username) + // to support responses containing sets of email addresses, we need to replace with unique values + index := 0 + i.Response.Body = reUserSAP.ReplaceAllStringFunc(i.Response.Body, func(string) string { + index++ + return strings.ReplaceAll(redactedTestUser.Username, "@", "+"+strconv.Itoa(index)+"@") + }) if strings.Contains(i.Response.Body, "givenName") { - i.Response.Body = strings.ReplaceAll(i.Response.Body, firstName, "John") + i.Response.Body = strings.ReplaceAll(i.Response.Body, user.Firstname, redactedTestUser.Firstname) } if strings.Contains(i.Response.Body, "familyName") { - i.Response.Body = strings.ReplaceAll(i.Response.Body, lastName, "Doe") + i.Response.Body = strings.ReplaceAll(i.Response.Body, user.Lastname, redactedTestUser.Lastname) } if strings.Contains(i.Response.Body, "externalId") { @@ -133,8 +208,10 @@ func setupVCR(t *testing.T, cassetteName string) *recorder.Recorder { return nil } +} - hookRedactTokensInHeader := func(i *cassette.Interaction) error { +func hookRedactTokensInHeader() func(i *cassette.Interaction) error { + return func(i *cassette.Interaction) error { redactTokenHeaders := func(headers map[string][]string) { for key := range headers { if strings.Contains(strings.ToLower(key), "token") { @@ -152,36 +229,6 @@ func setupVCR(t *testing.T, cassetteName string) *recorder.Recorder { return nil } - - rec.AddHook(hookRedactIntegrationUserCredentials, recorder.BeforeSaveHook) - rec.AddHook(hookRedactTokensInHeader, recorder.BeforeSaveHook) - - return rec -} - -func cliServerRequestMatcher(t *testing.T) func(r *http.Request, i cassette.Request) bool { - return func(r *http.Request, i cassette.Request) bool { - if r.Method != i.Method || r.URL.String() != i.URL { - return false - } - - subdomainHeaderKey := http.CanonicalHeaderKey(btpcli.HeaderCLISubdomain) - if r.Header.Get(subdomainHeaderKey) != i.Headers.Get(subdomainHeaderKey) { - return false - } - - idpHeaderKey := http.CanonicalHeaderKey(btpcli.HeaderCLICustomIDP) - if r.Header.Get(idpHeaderKey) != i.Headers.Get(idpHeaderKey) { - return false - } - - bytes, err := io.ReadAll(r.Body) - if err != nil { - t.Fatal("Unable to read body from request") - } - requestBody := string(bytes) - return requestBody == i.Body - } } func stopQuietly(rec *recorder.Recorder) { diff --git a/internal/provider/resource_directory_role_collection_assignment_test.go b/internal/provider/resource_directory_role_collection_assignment_test.go index b43225e1..e22f95da 100644 --- a/internal/provider/resource_directory_role_collection_assignment_test.go +++ b/internal/provider/resource_directory_role_collection_assignment_test.go @@ -11,7 +11,7 @@ import ( func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { t.Parallel() t.Run("happy path - simple role collection assignment", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection_assignment") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection_assignment") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionAssignment("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionAssignment("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "jenny.doe@test.com"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory_role_collection_assignment.uut", "directory_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_directory_role_collection_assignment.uut", "role_collection_name", "Directory Viewer"), @@ -32,7 +32,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { }) t.Run("happy path - role collection assignment with origin", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection_assignment_with_origin") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection_assignment_with_origin") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -40,7 +40,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionAssignmentWithOrigin("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "john.doe@test.com", "terraformint-platform"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionAssignmentWithOrigin("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "john.doe@test.com", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory_role_collection_assignment.uut", "directory_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_directory_role_collection_assignment.uut", "role_collection_name", "Directory Viewer"), @@ -53,7 +53,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { }) t.Run("error path - role collection import fails", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection_assignment_import_error") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection_assignment_import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -61,7 +61,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionAssignment("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionAssignment("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "Directory Viewer", "jenny.doe@test.com"), }, { ResourceName: "btp_directory_role_collection_assignment.uut", @@ -80,7 +80,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_directory_role_collection_assignment" "uut" {}`, + Config: `resource "btp_directory_role_collection_assignment" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found.`), }, }, @@ -93,7 +93,7 @@ func TestResourceDirectoryRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_directory_role_collection_assignment" "uut" {}`, + Config: `resource "btp_directory_role_collection_assignment" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "role_collection_name" is required, but no definition was found.`), }, }, diff --git a/internal/provider/resource_directory_role_collection_test.go b/internal/provider/resource_directory_role_collection_test.go index 909aea5e..7abe44c0 100644 --- a/internal/provider/resource_directory_role_collection_test.go +++ b/internal/provider/resource_directory_role_collection_test.go @@ -19,7 +19,7 @@ type directoryRoleCollectionRoleRefTestType struct { func TestResourceDirectoryRoleCollection(t *testing.T) { t.Run("happy path - no description", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection.no_description") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection.no_description") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -27,7 +27,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory_role_collection.uut", "directory_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_directory_role_collection.uut", "name", "My own role collection"), @@ -45,7 +45,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { }) t.Run("happy path - with description", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection.with_description") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection.with_description") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -53,7 +53,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionWithDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "This is my new role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionWithDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "This is my new role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory_role_collection.uut", "directory_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_directory_role_collection.uut", "name", "My own role collection"), @@ -72,7 +72,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { }) t.Run("happy path - multiple roles", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection.multiple_roles") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection.multiple_roles") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -80,7 +80,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollection( + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollection( "uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My role collection", @@ -113,7 +113,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { }) t.Run("happy path - update", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection.update") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection.update") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -121,7 +121,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory_role_collection.uut", "directory_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_directory_role_collection.uut", "name", "My own role collection"), @@ -131,7 +131,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceDirectoryRoleCollection( + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollection( "uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", @@ -154,7 +154,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "Directory Usage Reporting Viewer", "uas!b10418", "Directory_Usage_Reporting_Viewer"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My own role collection", "Directory Usage Reporting Viewer", "uas!b10418", "Directory_Usage_Reporting_Viewer"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory_role_collection.uut", "directory_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_directory_role_collection.uut", "name", "My own role collection"), @@ -174,7 +174,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { }) t.Run("error path - import fails", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory_role_collection.error_import") + rec, user := setupVCR(t, "fixtures/resource_directory_role_collection.error_import") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -182,7 +182,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My special role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), + Config: hclProviderFor(user) + hclResourceDirectoryRoleCollectionNoDescription("uut", "05368777-4934-41e8-9f3c-6ec5f4d564b9", "My special role collection", "Directory Viewer", "cis-central!b13", "Directory_Viewer"), }, { ResourceName: "btp_directory_role_collection.uut", @@ -201,7 +201,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_directory_role_collection" "uut" {}`, + Config: `resource "btp_directory_role_collection" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "directory_id" is required, but no definition was found.`), }, }, @@ -214,7 +214,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_directory_role_collection" "uut" {}`, + Config: `resource "btp_directory_role_collection" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "name" is required, but no definition was found.`), }, }, @@ -227,7 +227,7 @@ func TestResourceDirectoryRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_directory_role_collection" "uut" {}`, + Config: `resource "btp_directory_role_collection" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "roles" is required, but no definition was found.`), }, }, diff --git a/internal/provider/resource_directory_test.go b/internal/provider/resource_directory_test.go index fc723b37..a64131f6 100644 --- a/internal/provider/resource_directory_test.go +++ b/internal/provider/resource_directory_test.go @@ -10,7 +10,7 @@ import ( func TestResourceDirectory(t *testing.T) { t.Parallel() t.Run("happy path - parent directory", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory") + rec, user := setupVCR(t, "fixtures/resource_directory") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -18,7 +18,7 @@ func TestResourceDirectory(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectory("uut", "my-new-directory", "This is a new directory"), + Config: hclProviderFor(user) + hclResourceDirectory("uut", "my-new-directory", "This is a new directory"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory.uut", "id", regexpValidUUID), resource.TestMatchResourceAttr("btp_directory.uut", "created_date", regexpValidRFC3999Format), @@ -29,7 +29,7 @@ func TestResourceDirectory(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceDirectory("uut", "my-updated-directory", "This is a updated directory"), + Config: hclProviderFor(user) + hclResourceDirectory("uut", "my-updated-directory", "This is a updated directory"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_directory.uut", "id", regexpValidUUID), resource.TestMatchResourceAttr("btp_directory.uut", "created_date", regexpValidRFC3999Format), diff --git a/internal/provider/resource_globalaccount_resource_provider_test.go b/internal/provider/resource_globalaccount_resource_provider_test.go index ed5f73fa..e3e8224d 100644 --- a/internal/provider/resource_globalaccount_resource_provider_test.go +++ b/internal/provider/resource_globalaccount_resource_provider_test.go @@ -11,7 +11,7 @@ import ( func TestResourceGlobalaccountResourceProvider(t *testing.T) { t.Parallel() t.Run("happy path - create", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_resource_provider.create") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_resource_provider.create") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestResourceGlobalaccountResourceProvider(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalaccountResourceProvider("uut", + Config: hclProviderFor(user) + hclResourceGlobalaccountResourceProvider("uut", "AWS", "my_aws_resource_provider", "My AWS Resource Provider", @@ -36,7 +36,7 @@ func TestResourceGlobalaccountResourceProvider(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceGlobalaccountResourceProviderNoDesc("uut", + Config: hclProviderFor(user) + hclResourceGlobalaccountResourceProviderNoDesc("uut", "AWS", "another_resource_provider", "Another Resource Provider", @@ -54,7 +54,7 @@ func TestResourceGlobalaccountResourceProvider(t *testing.T) { }) t.Run("happy path - update", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_resource_provider.update") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_resource_provider.update") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -62,7 +62,7 @@ func TestResourceGlobalaccountResourceProvider(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalaccountResourceProvider("uut", + Config: hclProviderFor(user) + hclResourceGlobalaccountResourceProvider("uut", "AWS", "my_aws_resource_provider", "My AWS Resource Provider", @@ -79,7 +79,7 @@ func TestResourceGlobalaccountResourceProvider(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceGlobalaccountResourceProviderNoDesc("uut", + Config: hclProviderFor(user) + hclResourceGlobalaccountResourceProviderNoDesc("uut", "AWS", "my_aws_resource_provider", "My New Display Name", @@ -103,7 +103,7 @@ func TestResourceGlobalaccountResourceProvider(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + ` + Config: ` resource "btp_globalaccount_resource_provider" "uut" { technical_name = "technical_name" display_name = "display_name" @@ -121,7 +121,7 @@ resource "btp_globalaccount_resource_provider" "uut" { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + ` + Config: ` resource "btp_globalaccount_resource_provider" "uut" { provider_type = "provider_type" display_name = "display_name" @@ -139,7 +139,7 @@ resource "btp_globalaccount_resource_provider" "uut" { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + ` + Config: ` resource "btp_globalaccount_resource_provider" "uut" { provider_type = "provider_type" technical_name = "technical_name" @@ -157,7 +157,7 @@ resource "btp_globalaccount_resource_provider" "uut" { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + ` + Config: ` resource "btp_globalaccount_resource_provider" "uut" { provider_type = "provider_type" technical_name = "technical_name" diff --git a/internal/provider/resource_globalaccount_role_collection_assignment_test.go b/internal/provider/resource_globalaccount_role_collection_assignment_test.go index 7e311c42..2a033ffd 100644 --- a/internal/provider/resource_globalaccount_role_collection_assignment_test.go +++ b/internal/provider/resource_globalaccount_role_collection_assignment_test.go @@ -11,7 +11,7 @@ import ( func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { t.Parallel() t.Run("happy path - simple role collection assignment", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection_assignment") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_role_collection_assignment") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalaccountRoleCollectionAssignment("uut", "Global Account Viewer", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclResourceGlobalaccountRoleCollectionAssignment("uut", "Global Account Viewer", "jenny.doe@test.com"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("btp_globalaccount_role_collection_assignment.uut", "role_collection_name", "Global Account Viewer"), resource.TestCheckResourceAttr("btp_globalaccount_role_collection_assignment.uut", "user_name", "jenny.doe@test.com"), @@ -31,7 +31,7 @@ func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { }) t.Run("happy path - role collection assignment with origin", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection_assignment_with_origin") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_role_collection_assignment_with_origin") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -39,7 +39,7 @@ func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalaccountRoleCollectionAssignmentWithOrigin("uut", "Global Account Viewer", "john.doe@test.com", "terraformint-platform"), + Config: hclProviderFor(user) + hclResourceGlobalaccountRoleCollectionAssignmentWithOrigin("uut", "Global Account Viewer", "john.doe@test.com", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("btp_globalaccount_role_collection_assignment.uut", "role_collection_name", "Global Account Viewer"), resource.TestCheckResourceAttr("btp_globalaccount_role_collection_assignment.uut", "user_name", "john.doe@test.com"), @@ -51,7 +51,7 @@ func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { }) t.Run("error path - role collection import fails", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection_assignment_import_error") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_role_collection_assignment_import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -59,7 +59,7 @@ func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalaccountRoleCollectionAssignment("uut", "Global Account Viewer", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclResourceGlobalaccountRoleCollectionAssignment("uut", "Global Account Viewer", "jenny.doe@test.com"), }, { ResourceName: "btp_globalaccount_role_collection_assignment.uut", @@ -78,7 +78,7 @@ func TestResourceGlobalaccountRoleCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_globalaccount_role_collection_assignment" "uut" {}`, + Config: `resource "btp_globalaccount_role_collection_assignment" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "role_collection_name" is required, but no definition was found.`), }, }, diff --git a/internal/provider/resource_globalaccount_role_collection_test.go b/internal/provider/resource_globalaccount_role_collection_test.go index 79712e05..fa1b815c 100644 --- a/internal/provider/resource_globalaccount_role_collection_test.go +++ b/internal/provider/resource_globalaccount_role_collection_test.go @@ -18,7 +18,7 @@ type globalaccountRoleCollectionRoleRefTestType struct { func TestResourceGlobalAccountRoleCollection(t *testing.T) { t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_role_collection") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -26,7 +26,7 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalAccountRoleCollection( + Config: hclProviderFor(user) + hclResourceGlobalAccountRoleCollection( "uut", "My new role collection", "Description of my new role collection", @@ -52,7 +52,7 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { }) t.Run("happy path - update", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection.update") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_role_collection.update") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -60,7 +60,7 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalAccountRoleCollection( + Config: hclProviderFor(user) + hclResourceGlobalAccountRoleCollection( "uut", "My new role collection", "Description of my new role collection", @@ -77,7 +77,7 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceGlobalAccountRoleCollection( + Config: hclProviderFor(user) + hclResourceGlobalAccountRoleCollection( "uut", "My new role collection", "Description of my updated role collection", @@ -104,7 +104,7 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { }) t.Run("error path - import fails", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection.import_error") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_role_collection.import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -112,7 +112,7 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalAccountRoleCollection("uut", "My new role collection", "Description of my new role collection"), + Config: hclProviderFor(user) + hclResourceGlobalAccountRoleCollection("uut", "My new role collection", "Description of my new role collection"), }, { ResourceName: "btp_globalaccount_role_collection.uut", diff --git a/internal/provider/resource_globalaccount_trust_configuration_test.go b/internal/provider/resource_globalaccount_trust_configuration_test.go index dbeb160c..d632d78c 100644 --- a/internal/provider/resource_globalaccount_trust_configuration_test.go +++ b/internal/provider/resource_globalaccount_trust_configuration_test.go @@ -1,5 +1,9 @@ package provider +/* TODO This test is capable of deleting the trust to the terraformint IAS tenant. It was unexpectedly able to create + the trust when the limitation to one trust was dropped. This was anyway not the error it was targeting at. + The test was disabled and needs to be adapted to work with an IAS tenant that is not required for development. + import ( "fmt" "regexp" @@ -15,7 +19,7 @@ func TestResourceGlobalaccountTrustConfiguration(t *testing.T) { // without a configured trust configuration t.Run("error path - trust config does already exist", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_globalaccount_trust_configuration.exists") + rec, user := setupVCR(t, "fixtures/resource_globalaccount_trust_configuration.exists") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -23,7 +27,7 @@ func TestResourceGlobalaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceGlobalaccountTrustConfigurationSimple("uut", "terraformint.accounts400.ondemand.com"), + Config: hclProviderFor(user) + hclResourceGlobalaccountTrustConfigurationSimple("uut", "terraformint.accounts400.ondemand.com"), ExpectError: regexp.MustCompile(`the backend responded with an unknown error: 400`), //FIXME NGPBUG-350117 }, }, @@ -37,3 +41,5 @@ func hclResourceGlobalaccountTrustConfigurationSimple(resourceName string, ident return fmt.Sprintf(template, resourceName, identityProvider) } + +*/ diff --git a/internal/provider/resource_subaccount_entitlement_test.go b/internal/provider/resource_subaccount_entitlement_test.go index 458f1063..fbd0dbc4 100644 --- a/internal/provider/resource_subaccount_entitlement_test.go +++ b/internal/provider/resource_subaccount_entitlement_test.go @@ -11,7 +11,7 @@ import ( func TestResourceSubaccountEntitlement(t *testing.T) { t.Parallel() t.Run("happy path - no amount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_entitlement.no_amount") + rec, user := setupVCR(t, "fixtures/resource_subaccount_entitlement.no_amount") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountEntitlement("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "hana-cloud", "hana"), + Config: hclProviderFor(user) + hclResourceSubaccountEntitlement("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "hana-cloud", "hana"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "subaccount_id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "created_date", regexpValidRFC3999Format), @@ -43,7 +43,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { }) t.Run("happy path - with amount", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_entitlement.amount_set") + rec, user := setupVCR(t, "fixtures/resource_subaccount_entitlement.amount_set") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -51,7 +51,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "3"), + Config: hclProviderFor(user) + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "3"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "subaccount_id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "created_date", regexpValidRFC3999Format), @@ -75,7 +75,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { }) t.Run("happy path - update", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_entitlement.update") + rec, user := setupVCR(t, "fixtures/resource_subaccount_entitlement.update") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -83,7 +83,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "1"), + Config: hclProviderFor(user) + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "1"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "subaccount_id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "created_date", regexpValidRFC3999Format), @@ -97,7 +97,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "2"), + Config: hclProviderFor(user) + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "2"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "subaccount_id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_entitlement.uut", "created_date", regexpValidRFC3999Format), @@ -120,7 +120,7 @@ func TestResourceSubaccountEntitlement(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "0"), + Config: hclResourceSubaccountEntitlementWithAmount("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "data-privacy-integration-service", "standard", "0"), ExpectError: regexp.MustCompile(`Attribute amount value must be between 1 and 2000000000, got: 0`), }, }, diff --git a/internal/provider/resource_subaccount_environment_instance_test.go b/internal/provider/resource_subaccount_environment_instance_test.go index e1701bc9..3b9562ae 100644 --- a/internal/provider/resource_subaccount_environment_instance_test.go +++ b/internal/provider/resource_subaccount_environment_instance_test.go @@ -23,7 +23,7 @@ type cfOrgParameters struct { func TestResourceSubaccountEnvironmentInstance(t *testing.T) { t.Parallel() t.Run("happy path - simple CF creation", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_environment_instance") + rec, user := setupVCR(t, "fixtures/resource_subaccount_environment_instance") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -31,7 +31,7 @@ func TestResourceSubaccountEnvironmentInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountEnvironmentInstanceCF("uut", + Config: hclProviderFor(user) + hclResourceSubaccountEnvironmentInstanceCF("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "cloudFoundry-from-terraform", "standard", @@ -59,7 +59,7 @@ func TestResourceSubaccountEnvironmentInstance(t *testing.T) { }) t.Run("happy path - update", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_environment_instance.update") + rec, user := setupVCR(t, "fixtures/resource_subaccount_environment_instance.update") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -67,7 +67,7 @@ func TestResourceSubaccountEnvironmentInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountEnvironmentInstanceCF("uut", + Config: hclProviderFor(user) + hclResourceSubaccountEnvironmentInstanceCF("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "cloudFoundry-from-terraform", "standard", @@ -85,7 +85,7 @@ func TestResourceSubaccountEnvironmentInstance(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceSubaccountEnvironmentInstanceCF("uut", + Config: hclProviderFor(user) + hclResourceSubaccountEnvironmentInstanceCF("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "cloudFoundry-from-terraform", "standard", @@ -104,7 +104,7 @@ func TestResourceSubaccountEnvironmentInstance(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceSubaccountEnvironmentInstanceCFWithOrgParams("uut", + Config: hclProviderFor(user) + hclResourceSubaccountEnvironmentInstanceCFWithOrgParams("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "cloudFoundry-from-terraform", "standard", diff --git a/internal/provider/resource_subaccount_role_collection_assignment_test.go b/internal/provider/resource_subaccount_role_collection_assignment_test.go index b9240d7b..868543f8 100644 --- a/internal/provider/resource_subaccount_role_collection_assignment_test.go +++ b/internal/provider/resource_subaccount_role_collection_assignment_test.go @@ -11,7 +11,7 @@ import ( func TestResourceRolCollectionAssignment(t *testing.T) { t.Parallel() t.Run("happy path - simple role collection assignment", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_role_collection_assignment") + rec, user := setupVCR(t, "fixtures/resource_subaccount_role_collection_assignment") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +19,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceRoleCollectionAssignment("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Destination Administrator", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclResourceRoleCollectionAssignment("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Destination Administrator", "jenny.doe@test.com"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_role_collection_assignment.uut", "subaccount_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount_role_collection_assignment.uut", "role_collection_name", "Destination Administrator"), @@ -32,7 +32,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { }) t.Run("happy path - role collection assignment with origin", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_role_collection_assignment_with_origin") + rec, user := setupVCR(t, "fixtures/resource_subaccount_role_collection_assignment_with_origin") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -40,7 +40,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceRoleCollectionAssignmentWithOrigin("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Destination Administrator", "john.doe@test.com", "terraformint-platform"), + Config: hclProviderFor(user) + hclResourceRoleCollectionAssignmentWithOrigin("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Destination Administrator", "john.doe@test.com", "terraformint-platform"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_role_collection_assignment.uut", "subaccount_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount_role_collection_assignment.uut", "role_collection_name", "Destination Administrator"), @@ -53,7 +53,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { }) t.Run("error path - role collection import fails", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_role_collection_assignment_import_error") + rec, user := setupVCR(t, "fixtures/resource_subaccount_role_collection_assignment_import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -61,7 +61,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceRoleCollectionAssignment("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Destination Administrator", "jenny.doe@test.com"), + Config: hclProviderFor(user) + hclResourceRoleCollectionAssignment("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "Destination Administrator", "jenny.doe@test.com"), }, { ResourceName: "btp_subaccount_role_collection_assignment.uut", @@ -80,7 +80,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_subaccount_role_collection_assignment" "uut" {}`, + Config: `resource "btp_subaccount_role_collection_assignment" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), }, }, @@ -93,7 +93,7 @@ func TestResourceRolCollectionAssignment(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + `resource "btp_subaccount_role_collection_assignment" "uut" {}`, + Config: `resource "btp_subaccount_role_collection_assignment" "uut" {}`, ExpectError: regexp.MustCompile(`The argument "role_collection_name" is required, but no definition was found.`), }, }, diff --git a/internal/provider/resource_subaccount_role_collection_test.go b/internal/provider/resource_subaccount_role_collection_test.go index ace0f8b6..dbaf9d17 100644 --- a/internal/provider/resource_subaccount_role_collection_test.go +++ b/internal/provider/resource_subaccount_role_collection_test.go @@ -18,7 +18,7 @@ type subaccountRoleCollectionRoleRefTestType struct { func TestResourceSubAccountRoleCollection(t *testing.T) { t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_role_collection") + rec, user := setupVCR(t, "fixtures/resource_subaccount_role_collection") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -26,7 +26,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubAccountRoleCollection( + Config: hclProviderFor(user) + hclResourceSubAccountRoleCollection( "uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "My new role collection", @@ -58,7 +58,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { }) t.Run("happy path - update", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_role_collection.update") + rec, user := setupVCR(t, "fixtures/resource_subaccount_role_collection.update") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -66,7 +66,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubAccountRoleCollection( + Config: hclProviderFor(user) + hclResourceSubAccountRoleCollection( "uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "My new role collection", @@ -88,7 +88,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceSubAccountRoleCollection( + Config: hclProviderFor(user) + hclResourceSubAccountRoleCollection( "uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "My new role collection", @@ -116,7 +116,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { }) t.Run("error path - import with wrong key", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_role_collection.import_error") + rec, user := setupVCR(t, "fixtures/resource_subaccount_role_collection.import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -124,7 +124,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubAccountRoleCollection("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "My new role collection", "Description of my new role collection"), + Config: hclProviderFor(user) + hclResourceSubAccountRoleCollection("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "My new role collection", "Description of my new role collection"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestCheckResourceAttr("btp_subaccount_role_collection.uut", "name", "My new role collection"), resource.TestCheckResourceAttr("btp_subaccount_role_collection.uut", "description", "Description of my new role collection"), @@ -148,7 +148,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubAccountRoleCollection("uut", "this-is-not-a-uuid", "My new role collection", "Description of my new role collection"), + Config: hclResourceSubAccountRoleCollection("uut", "this-is-not-a-uuid", "My new role collection", "Description of my new role collection"), ExpectError: regexp.MustCompile(`Attribute subaccount_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -161,7 +161,7 @@ func TestResourceSubAccountRoleCollection(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubAccountRoleCollectionNoSubaccountId("uut", "My new role collection", "Description of my new role collection"), + Config: hclResourceSubAccountRoleCollectionNoSubaccountId("uut", "My new role collection", "Description of my new role collection"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, diff --git a/internal/provider/resource_subaccount_service_binding_test.go b/internal/provider/resource_subaccount_service_binding_test.go index b2aab32e..50816ea2 100644 --- a/internal/provider/resource_subaccount_service_binding_test.go +++ b/internal/provider/resource_subaccount_service_binding_test.go @@ -12,7 +12,7 @@ import ( func TestResourceSubaccountServiceBinding(t *testing.T) { // Using the alert notification service as ID for the service instance t.Run("happy path - simple service_binding", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_service_binding") + rec, user := setupVCR(t, "fixtures/resource_subaccount_service_binding") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -20,7 +20,7 @@ func TestResourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceBinding("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a", "tfint-test-alert-sb"), + Config: hclProviderFor(user) + hclResourceSubaccountServiceBinding("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a", "tfint-test-alert-sb"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_service_binding.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount_service_binding.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), @@ -43,7 +43,7 @@ func TestResourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceBindingNoSubaccountId("uut", "df532d07-57a7-415e-a261-23a398ef068a", "tfint-test-alert-sb"), + Config: hclResourceSubaccountServiceBindingNoSubaccountId("uut", "df532d07-57a7-415e-a261-23a398ef068a", "tfint-test-alert-sb"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -56,7 +56,7 @@ func TestResourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceBindingNoServiceInstanceId("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tfint-test-alert-sb"), + Config: hclResourceSubaccountServiceBindingNoServiceInstanceId("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tfint-test-alert-sb"), ExpectError: regexp.MustCompile(`The argument "service_instance_id" is required, but no definition was found`), }, }, @@ -69,7 +69,7 @@ func TestResourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceBindingNoName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a"), + Config: hclResourceSubaccountServiceBindingNoName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a"), ExpectError: regexp.MustCompile(`The argument "name" is required, but no definition was found`), }, }, @@ -77,7 +77,7 @@ func TestResourceSubaccountServiceBinding(t *testing.T) { }) t.Run("error path - import failure", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_service_binding_import_error") + rec, user := setupVCR(t, "fixtures/resource_subaccount_service_binding_import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -85,7 +85,7 @@ func TestResourceSubaccountServiceBinding(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceBinding("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a", "tfint-test-alert-sb"), + Config: hclProviderFor(user) + hclResourceSubaccountServiceBinding("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "df532d07-57a7-415e-a261-23a398ef068a", "tfint-test-alert-sb"), }, { ResourceName: "btp_subaccount_service_binding.uut", diff --git a/internal/provider/resource_subaccount_service_instance_test.go b/internal/provider/resource_subaccount_service_instance_test.go index 89178ce9..f9a5677f 100644 --- a/internal/provider/resource_subaccount_service_instance_test.go +++ b/internal/provider/resource_subaccount_service_instance_test.go @@ -35,7 +35,7 @@ type testParamsDestination struct { func TestResourceSubaccountServiceInstance(t *testing.T) { t.Run("happy path - simple service creation wo parameters", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_service_instance_wo_parameters") + rec, user := setupVCR(t, "fixtures/resource_subaccount_service_instance_wo_parameters") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -43,7 +43,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceInstanceWoParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-test-audit-log", "02fed361-89c1-4560-82c3-0deaf93ac75b"), + Config: hclProviderFor(user) + hclResourceSubaccountServiceInstanceWoParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-test-audit-log", "02fed361-89c1-4560-82c3-0deaf93ac75b"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "subaccount_id", regexpValidUUID), @@ -56,7 +56,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceSubaccountServiceInstanceWoParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "TF-TEST-AUDIT-LOG", "02fed361-89c1-4560-82c3-0deaf93ac75b"), + Config: hclProviderFor(user) + hclResourceSubaccountServiceInstanceWoParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "TF-TEST-AUDIT-LOG", "02fed361-89c1-4560-82c3-0deaf93ac75b"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "subaccount_id", regexpValidUUID), @@ -79,7 +79,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { }) t.Run("happy path - simple service creation with parameters", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_service_instance_with_parameters") + rec, user := setupVCR(t, "fixtures/resource_subaccount_service_instance_with_parameters") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -87,7 +87,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceInstanceWithParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-test-destintion", "cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c"), + Config: hclProviderFor(user) + hclResourceSubaccountServiceInstanceWithParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-test-destination", "cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "id", regexpValidUUID), resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "subaccount_id", regexpValidUUID), @@ -95,7 +95,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount_service_instance.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount_service_instance.uut", "usable", "true"), - resource.TestCheckResourceAttr("btp_subaccount_service_instance.uut", "name", "tf-test-destintion"), + resource.TestCheckResourceAttr("btp_subaccount_service_instance.uut", "name", "tf-test-destination"), resource.TestCheckResourceAttr("btp_subaccount_service_instance.uut", "platform_id", "service-manager"), ), }, @@ -109,7 +109,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceInstanceNoSubaccountId("uut", "tf-test-audit-log", "4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5"), + Config: hclResourceSubaccountServiceInstanceNoSubaccountId("uut", "tf-test-audit-log", "4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -122,7 +122,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceInstanceNoServicName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5"), + Config: hclResourceSubaccountServiceInstanceNoServicName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "4bf8a2c4-6277-4bb1-b80d-2e46e87bd1a5"), ExpectError: regexp.MustCompile(`The argument "name" is required, but no definition was found`), }, }, @@ -135,7 +135,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceInstanceNoPlan("uut", "this-is-not-a-uuid", "tf-test-audit-log"), + Config: hclResourceSubaccountServiceInstanceNoPlan("uut", "this-is-not-a-uuid", "tf-test-audit-log"), ExpectError: regexp.MustCompile(`The argument "serviceplan_id" is required, but no definition was found`), }, }, @@ -143,7 +143,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { }) t.Run("error path - import failure", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_service_instance_import_error") + rec, user := setupVCR(t, "fixtures/resource_subaccount_service_instance_import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -151,7 +151,7 @@ func TestResourceSubaccountServiceInstance(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountServiceInstanceWoParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-test-audit-log", "02fed361-89c1-4560-82c3-0deaf93ac75b"), + Config: hclProviderFor(user) + hclResourceSubaccountServiceInstanceWoParameters("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-test-audit-log", "02fed361-89c1-4560-82c3-0deaf93ac75b"), }, { ResourceName: "btp_subaccount_service_instance.uut", diff --git a/internal/provider/resource_subaccount_subscription_test.go b/internal/provider/resource_subaccount_subscription_test.go index 7afcadb0..a8d597d8 100644 --- a/internal/provider/resource_subaccount_subscription_test.go +++ b/internal/provider/resource_subaccount_subscription_test.go @@ -10,7 +10,7 @@ import ( func TestResourceSubaccountSubscription(t *testing.T) { t.Run("happy path - simple subscription", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_subscription") + rec, user := setupVCR(t, "fixtures/resource_subaccount_subscription") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -18,7 +18,7 @@ func TestResourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountSubscription("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "auditlog-viewer", "free"), + Config: hclProviderFor(user) + hclResourceSubaccountSubscription("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "auditlog-viewer", "free"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_subscription.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount_subscription.uut", "subaccount_id", "59cd458e-e66e-4b60-b6d8-8f219379f9a5"), @@ -48,7 +48,7 @@ func TestResourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountSubscriptionNoSubaccountId("uut", "auditlog-viewer", "free"), + Config: hclResourceSubaccountSubscriptionNoSubaccountId("uut", "auditlog-viewer", "free"), ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), }, }, @@ -61,7 +61,7 @@ func TestResourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountSubscriptionNoAppName("uut", "auditlog-viewer", "free"), + Config: hclResourceSubaccountSubscriptionNoAppName("uut", "auditlog-viewer", "free"), ExpectError: regexp.MustCompile(`The argument "app_name" is required, but no definition was found`), }, }, @@ -74,7 +74,7 @@ func TestResourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountSubscriptionNoPlan("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "auditlog-viewer"), + Config: hclResourceSubaccountSubscriptionNoPlan("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "auditlog-viewer"), ExpectError: regexp.MustCompile(`The argument "plan_name" is required, but no definition was found`), }, }, @@ -82,7 +82,7 @@ func TestResourceSubaccountSubscription(t *testing.T) { }) t.Run("error path - import failure", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_subscription_import_error") + rec, user := setupVCR(t, "fixtures/resource_subaccount_subscription_import_error") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -90,7 +90,7 @@ func TestResourceSubaccountSubscription(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountSubscription("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "auditlog-viewer", "free"), + Config: hclProviderFor(user) + hclResourceSubaccountSubscription("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "auditlog-viewer", "free"), }, { ResourceName: "btp_subaccount_subscription.uut", diff --git a/internal/provider/resource_subaccount_test.go b/internal/provider/resource_subaccount_test.go index 27213c7c..6a56b4c7 100644 --- a/internal/provider/resource_subaccount_test.go +++ b/internal/provider/resource_subaccount_test.go @@ -14,7 +14,7 @@ import ( func TestResourceSubaccount(t *testing.T) { t.Parallel() t.Run("happy path", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount") + rec, user := setupVCR(t, "fixtures/resource_subaccount") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -22,14 +22,14 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccount("uut", "integration-test-acc-dyn", "eu12", "integration-test-acc-dyn"), + Config: hclProviderFor(user) + hclResourceSubaccount("uut", "integration-test-acc-dyn", "eu12", "integration-test-acc-dyn"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "name", "integration-test-acc-dyn"), resource.TestCheckResourceAttr("btp_subaccount.uut", "description", ""), resource.TestMatchResourceAttr("btp_subaccount.uut", "parent_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "subdomain", "integration-test-acc-dyn"), - resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", user.Username), resource.TestMatchResourceAttr("btp_subaccount.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"), @@ -38,14 +38,14 @@ func TestResourceSubaccount(t *testing.T) { ), }, { - Config: hclProvider() + hclResourceSubaccount("uut", "Integration Test Acc Dyn", "eu12", "integration-test-acc-dyn"), + Config: hclProviderFor(user) + hclResourceSubaccount("uut", "Integration Test Acc Dyn", "eu12", "integration-test-acc-dyn"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "name", "Integration Test Acc Dyn"), resource.TestCheckResourceAttr("btp_subaccount.uut", "description", ""), resource.TestMatchResourceAttr("btp_subaccount.uut", "parent_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "subdomain", "integration-test-acc-dyn"), - resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", user.Username), resource.TestMatchResourceAttr("btp_subaccount.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"), @@ -62,7 +62,7 @@ func TestResourceSubaccount(t *testing.T) { }) }) t.Run("happy path used for prod", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_used_for_production") + rec, user := setupVCR(t, "fixtures/resource_subaccount_used_for_production") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -70,14 +70,14 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountUsedForProd("uut", "integration-test-acc-dyn", "eu12", "integration-test-acc-dyn"), + Config: hclProviderFor(user) + hclResourceSubaccountUsedForProd("uut", "integration-test-acc-dyn", "eu12", "integration-test-acc-dyn"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "name", "integration-test-acc-dyn"), resource.TestCheckResourceAttr("btp_subaccount.uut", "description", ""), resource.TestMatchResourceAttr("btp_subaccount.uut", "parent_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "subdomain", "integration-test-acc-dyn"), - resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", user.Username), resource.TestMatchResourceAttr("btp_subaccount.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"), @@ -86,15 +86,15 @@ func TestResourceSubaccount(t *testing.T) { ), }, { - //Update name wo change of usage but proivde usage explicitly again - Config: hclProvider() + hclResourceSubaccountUsedForProd("uut", "Integration Test Acc Dyn", "eu12", "integration-test-acc-dyn"), + // Update name wo change of usage but provide usage explicitly again + Config: hclProviderFor(user) + hclResourceSubaccountUsedForProd("uut", "Integration Test Acc Dyn", "eu12", "integration-test-acc-dyn"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "name", "Integration Test Acc Dyn"), resource.TestCheckResourceAttr("btp_subaccount.uut", "description", ""), resource.TestMatchResourceAttr("btp_subaccount.uut", "parent_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "subdomain", "integration-test-acc-dyn"), - resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", user.Username), resource.TestMatchResourceAttr("btp_subaccount.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"), @@ -112,7 +112,7 @@ func TestResourceSubaccount(t *testing.T) { }) t.Run("happy path change to used for prod", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_change_to_used_for_production") + rec, user := setupVCR(t, "fixtures/resource_subaccount_change_to_used_for_production") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -120,14 +120,14 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccount("uut", "integration-test-acc-dyn", "eu12", "integration-test-acc-dyn"), + Config: hclProviderFor(user) + hclResourceSubaccount("uut", "integration-test-acc-dyn", "eu12", "integration-test-acc-dyn"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "name", "integration-test-acc-dyn"), resource.TestCheckResourceAttr("btp_subaccount.uut", "description", ""), resource.TestMatchResourceAttr("btp_subaccount.uut", "parent_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "subdomain", "integration-test-acc-dyn"), - resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", user.Username), resource.TestMatchResourceAttr("btp_subaccount.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"), @@ -137,14 +137,14 @@ func TestResourceSubaccount(t *testing.T) { }, { //Update name wo change of usage but proivde usage explicitly again - Config: hclProvider() + hclResourceSubaccountUsedForProd("uut", "Integration Test Acc Dyn", "eu12", "integration-test-acc-dyn"), + Config: hclProviderFor(user) + hclResourceSubaccountUsedForProd("uut", "Integration Test Acc Dyn", "eu12", "integration-test-acc-dyn"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount.uut", "id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "name", "Integration Test Acc Dyn"), resource.TestCheckResourceAttr("btp_subaccount.uut", "description", ""), resource.TestMatchResourceAttr("btp_subaccount.uut", "parent_id", regexpValidUUID), resource.TestCheckResourceAttr("btp_subaccount.uut", "subdomain", "integration-test-acc-dyn"), - resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", "john.doe@int.test"), + resource.TestCheckResourceAttr("btp_subaccount.uut", "created_by", user.Username), resource.TestMatchResourceAttr("btp_subaccount.uut", "created_date", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_subaccount.uut", "last_modified", regexpValidRFC3999Format), resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"), @@ -162,7 +162,7 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountWithParent("uut", "this-is-not-a-uuid", "a-subaccount", "eu12", "a-subaccount"), + Config: hclResourceSubaccountWithParent("uut", "this-is-not-a-uuid", "a-subaccount", "eu12", "a-subaccount"), ExpectError: regexp.MustCompile(`Attribute parent_id value must be a valid UUID, got: this-is-not-a-uuid`), }, }, @@ -174,7 +174,7 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccount("uut", "a/subaccount", "eu12", "a-subaccount"), + Config: hclResourceSubaccount("uut", "a/subaccount", "eu12", "a-subaccount"), ExpectError: regexp.MustCompile(`Attribute name must not contain '/', not be empty and not exceed 255`), }, }, @@ -186,7 +186,7 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(nil), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccount("uut", "a.subaccount", "eu12", "a.subaccount"), + Config: hclResourceSubaccount("uut", "a.subaccount", "eu12", "a.subaccount"), ExpectError: regexp.MustCompile(`Attribute subdomain must only contain letters \(a-z\), digits \(0-9\)`), }, }, @@ -207,7 +207,7 @@ func TestResourceSubaccount(t *testing.T) { ProtoV6ProviderFactories: getProviders(srv.Client()), Steps: []resource.TestStep{ { - Config: hclProviderWithCLIServerURL(srv.URL) + hclResourceSubaccount("uut", "a-subaccount", "eu12", "a-subaccount"), + Config: hclProviderForCLIServerAt(srv.URL) + hclResourceSubaccount("uut", "a-subaccount", "eu12", "a-subaccount"), ExpectError: regexp.MustCompile(`Received response with unexpected status \[Status: 404; Correlation ID:\s+[a-f0-9\-]+\]`), }, }, diff --git a/internal/provider/resource_subaccount_trust_configuration_test.go b/internal/provider/resource_subaccount_trust_configuration_test.go index ffe3e9cd..30bb41b5 100644 --- a/internal/provider/resource_subaccount_trust_configuration_test.go +++ b/internal/provider/resource_subaccount_trust_configuration_test.go @@ -1,5 +1,6 @@ package provider +/* import ( "fmt" "testing" @@ -11,7 +12,7 @@ func TestResourceSubaccountTrustConfiguration(t *testing.T) { t.Parallel() t.Run("happy path - complete configuration", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_trust_configuration.complete") + rec, user := setupVCR(t, "fixtures/resource_subaccount_trust_configuration.complete") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -19,7 +20,7 @@ func TestResourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountTrustConfigurationComplete("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint.accounts400.ondemand.com", "Custom IAS tenant for apps", "IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)"), + Config: hclProviderFor(user) + hclResourceSubaccountTrustConfigurationComplete("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint.accounts400.ondemand.com", "Custom IAS tenant for apps", "IAS tenant terraformint.accounts400.ondemand.com (OpenID Connect)"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_trust_configuration.uut", "subaccount_id", regexpValidUUID), //resource.TestMatchResourceAttr("btp_subaccount_trust_configuration.uut", "created_date", regexpValidRFC3999Format), @@ -36,7 +37,7 @@ func TestResourceSubaccountTrustConfiguration(t *testing.T) { }) t.Run("happy path - minimal configuration", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_subaccount_trust_configuration.minimal") + rec, user := setupVCR(t, "fixtures/resource_subaccount_trust_configuration.minimal") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -44,7 +45,7 @@ func TestResourceSubaccountTrustConfiguration(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceSubaccountTrustConfigurationMinimum("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint.accounts400.ondemand.com"), + Config: hclProviderFor(user) + hclResourceSubaccountTrustConfigurationMinimum("uut", "ef23ace8-6ade-4d78-9c1f-8df729548bbf", "terraformint.accounts400.ondemand.com"), Check: resource.ComposeAggregateTestCheckFunc( resource.TestMatchResourceAttr("btp_subaccount_trust_configuration.uut", "subaccount_id", regexpValidUUID), // resource.TestMatchResourceAttr("btp_subaccount_trust_configuration.uut", "created_date", regexpValidRFC3999Format), @@ -83,3 +84,4 @@ resource "btp_subaccount_trust_configuration" "%s" { return fmt.Sprintf(template, resourceName, subaccountId, identityProvider) } +*/